/* Ilha dos Arvoredos - Ecoturismo */
/* Tema: Natureza Sustentável - Cores verdes e azuis da natureza */
/* Cores: Verde Mar (#2E8B57), Azul Turquesa (#40E0D0), Tons de Areia (#F5F5DC) */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #F5F5DC 0%, #E8F4F8 50%, #F0FFF0 100%);
    color: #2C5530;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(46, 139, 87, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: #40E0D0;
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.logo h1 {
    font-size: 1.8rem;
    color: #F5F5DC;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.tagline {
    font-size: 0.7rem;
    color: #40E0D0;
    font-style: italic;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #F5F5DC;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #40E0D0;
    text-shadow: 0 0 5px rgba(64, 224, 208, 0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #40E0D0, #2E8B57);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #40E0D0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    color: #2E8B57;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #40E0D0;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #2C5530;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(245, 245, 220, 0.9);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 139, 87, 0.9);
    color: #F5F5DC;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature i {
    color: #40E0D0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, #2E8B57, #40E0D0);
    border-color: #2E8B57;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.6);
}

.cta-button.secondary {
    border-color: #40E0D0;
    color: #2E8B57;
    background: rgba(245, 245, 220, 0.9);
}

.cta-button.secondary:hover {
    background: #40E0D0;
    color: #2E8B57;
    transform: translateY(-2px);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 139, 87, 0.3), rgba(64, 224, 208, 0.2), rgba(245, 245, 220, 0.1));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F4F8 100%);
}

.about-section .container {
    max-width: 1400px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: #2E8B57;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.8rem;
    border-left: 4px solid #40E0D0;
    padding-left: 1rem;
}

.about-text h4 {
    color: #2C5530;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2C5530;
}

.about-text ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.8rem;
    color: #2C5530;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(46, 139, 87, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(64, 224, 208, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2E8B57;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #2C5530;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0FFF0 100%);
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #40E0D0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2E8B57, #40E0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.feature-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #2C5530;
    line-height: 1.6;
}

/* Visits Section */
.visits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F4F8 100%);
}

.visits-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #2C5530;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.visit-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.visit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.visit-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visit-card:hover .visit-image img {
    transform: scale(1.05);
}

.visit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #40E0D0;
    color: #2E8B57;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.visit-content {
    padding: 2rem;
}

.visit-content h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.visit-content p {
    color: #2C5530;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.visit-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.visit-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2C5530;
}

.visit-details i {
    color: #40E0D0;
}

.book-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #2E8B57, #40E0D0);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.booking-notice {
    background: rgba(46, 139, 87, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.booking-notice h3 {
    color: #2E8B57;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.booking-notice ul {
    padding-left: 1.5rem;
}

.booking-notice li {
    margin-bottom: 0.8rem;
    color: #2C5530;
    position: relative;
}

.booking-notice li::marker {
    color: #40E0D0;
}

/* Conservation Section */
.conservation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0FFF0 100%);
}

.conservation-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

.conservation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.conservation-text h3 {
    color: #2E8B57;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    border-left: 4px solid #40E0D0;
    padding-left: 1rem;
}

.conservation-text h4 {
    color: #2C5530;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.conservation-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2C5530;
}

.conservation-text ul {
    margin: 1rem 0 2rem 0;
    padding-left: 2rem;
}

.conservation-text li {
    margin-bottom: 0.8rem;
    color: #2C5530;
}

.conservation-gallery {
    display: grid;
    gap: 1rem;
}

.conservation-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.conservation-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.conservation-item:hover img {
    transform: scale(1.05);
}

.conservation-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(46, 139, 87, 0.9));
    color: white;
    padding: 1rem;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F4F8 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #2C5530;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(64, 224, 208, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #40E0D0;
}

.testimonial-author h4 {
    color: #2E8B57;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #2C5530;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0FFF0 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #2E8B57;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2C5530;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #2C5530;
}

.contact-details strong {
    color: #2E8B57;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 8px;
    color: #2C5530;
}

.contact-feature i {
    color: #40E0D0;
    font-size: 1.2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2E8B57;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 8px;
    background: white;
    color: #2C5530;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #40E0D0;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 4px;
    position: relative;
    background: white;
}

.checkbox-label input:checked + .checkmark {
    background: #40E0D0;
    border-color: #40E0D0;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2E8B57;
    font-weight: bold;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #2E8B57, #40E0D0);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);
}

.modal-header h3 {
    color: #2E8B57;
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: #2C5530;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #40E0D0;
}

.modal-body {
    padding: 2rem;
}

/* Authority Links */
.authority-links {
    padding: 3rem 0;
    background: rgba(46, 139, 87, 0.1);
    text-align: center;
}

.authority-links h3 {
    color: #2E8B57;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.authority-link {
    color: #2E8B57;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.authority-link:hover {
    background: rgba(64, 224, 208, 0.2);
    border-color: #40E0D0;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: #2E8B57;
    border-top: 1px solid rgba(64, 224, 208, 0.5);
    color: #F5F5DC;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo h3 {
    color: #40E0D0;
    margin: 0;
    font-size: 1.3rem;
}

.footer-logo p {
    color: #F5F5DC;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: #F5F5DC;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #40E0D0;
}

.footer-authority a {
    display: block;
    color: #40E0D0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-authority a:hover {
    color: #F5F5DC;
}

.footer-bottom {
    border-top: 1px solid rgba(64, 224, 208, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(245, 245, 220, 0.8);
    font-size: 0.9rem;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #E8F4F8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #2E8B57, #40E0D0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #40E0D0, #2E8B57);
}



