/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3D403A;
    background-color: #e6e9e5; /* Fallback for older browsers */
    background-image: linear-gradient(180deg, #f0f2ef 0%, #e6e9e5 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.icon-nav {
    background-color: #4a5548;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo h2 {
    color: #d1c8b7;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
    transition: color 0.2s ease-out;
}

.nav-logo:hover h2 {
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-grow: 1;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #d1c8b7;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow: hidden;
}

.nav-link i {
    font-size: 1.5rem;
    display: block;
    transition: color 0.2s ease-out;
    z-index: 2;
}

/* Text that appears on hover */
.nav-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin-left 0.4s ease;
    z-index: 2;
}

/* Hover State */
.nav-link:hover {
    background-color: #b29d74;
    color: #fff;
}

.nav-link:hover i {
    color: #fff;
}

.nav-link:hover .nav-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 10px;
}

/* Active State */
.nav-link.active {
    background-color: #b29d74;
}

.nav-link.active i,
.nav-link.active .nav-text {
    color: #fff;
}

/* Remove the old underline indicator */
.nav-link::after {
    display: none;
}

.btn-reservar:hover .nav-text {
    color: #fff;
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #d1c8b7; /* Soft stone color */
}

/* Responsive navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    .nav-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        position: relative;
        z-index: 2;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 2;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -280px; /* Hidden off-screen */
        top: 0;
        width: 280px; /* Fixed width for the sidebar */
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; /* Align items to the left */
        background-color: #e6e9e5; /* Fallback color */
        background-image: linear-gradient(180deg, #f0f2ef 0%, #e6e9e5 100%); /* Page background */
        padding: 80px 0 40px 0; /* Add padding top/bottom */
        gap: 0; /* Remove gap for full-width links */
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        transition: left 0.4s ease;
        z-index: 1001; /* Ensure menu is on top */
    }

    .nav-menu.active {
        left: 0; /* Slide in */
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 15px 30px; /* Adjust padding */
        color: #3D403A; /* Dark text for light background */
        border-radius: 0; /* Remove border-radius */
        background-color: transparent; /* No background by default */
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-link i {
        font-size: 1.3rem;
        width: 30px; /* Fixed width for icon container */
        margin-right: 15px; /* Space between icon and text */
        color: #2c5530; /* Dark green to match section titles */
    }

    .nav-text {
        max-width: 100%; /* Ensure text is always visible */
        opacity: 1;
        font-size: 1rem;
        color: #3D403A; /* Dark text for light background */
        transition: none; /* No transition needed for mobile text */
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #b29d74; /* Gold background on hover/active */
    }

    .nav-link:hover i,
    .nav-link:hover .nav-text,
    .nav-link.active i,
    .nav-link.active .nav-text {
        color: #fff; /* White text and icon on hover/active */
    }
}

/* Overlay for when mobile menu is active */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none; /* Allow clicks to pass through the overlay */
}

.btn-reservar {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a22 100%);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.btn-reservar i {
    font-size: 1rem !important;
}

.btn-reservar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-reservar:hover {
    background: linear-gradient(135deg, #1e3a22 0%, #2c5530 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

.btn-reservar:hover span {
    display: inline-block;
}

.btn-reservar:hover::before {
    left: 100%;
}

.btn-reservar::after {
    display: none;
}

/* Mobile menu button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(44, 85, 48, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #2c5530, #1e3a22);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    .btn-reservar span {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .btn-reservar span {
        display: inline-block;
    }

    .nav-menu .nav-link i {
        font-size: 1.3rem;
    }

    .btn-reservar {
        margin-top: 1rem;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
}

/* Hero Section - Full Screen */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/imagem_fundo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .cta-button {
    display: inline-block;
    background: #2c5530;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button:hover {
    background: #3a4538;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 4rem 0;
    background-color: transparent; /* Ensure sections are transparent */
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
}

section:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.1); /* Soften the overlay */
}

/* General Section Styles */
section {
    padding: 4rem 0;
    /* This empty rule ensures no other background is applied,
       allowing the body's gradient to show through. */
}

.about, .floor-plans, .form-section {
    background-color: transparent !important; /* Ensure gradient shows through */
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.amenities-list h4 {
    color: #2c5530;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.amenities-list ul {
    list-style: none;
    margin-left: 1rem;
}

.amenities-list li {
    position: relative;
    padding: 0.5rem 0;
    color: #666;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #2c5530;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Floor Plans */
.floor-plans {
    background: #f8f9fa;
}

.plans-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.plan {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.plan ul {
    list-style: none;
}

.plan li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan i {
    color: #2c5530;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.amenity-card h4 {
    color: #333;
    font-weight: 600;
}

/* Gallery */
.gallery {
    background: white;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h3 {
    color: #2c5530;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.gallery-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Attractions */
.attractions {
    background: #f8f9fa;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-card h4 {
    padding: 1rem;
    color: #2c5530;
    font-weight: 600;
}

.attraction-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.activity-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: #666;
}

/* Restaurants */
.restaurants {
    background: #f8f9fa;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-5px);
}

.restaurant-card h4 {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.restaurant-card p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a22 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background: white;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #2c5530;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    color: #1e3a22;
}

/* Reservation Section */
.reservation {
    background: #f8f9fa;
    padding: 5rem 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-info h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.info-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
}

.reservation-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-note h4 {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reservation-note i {
    color: #2c5530;
}

.reservation-note ul {
    list-style: none;
    margin-left: 0;
}

.reservation-note li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.reservation-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.terms-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #2c5530;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background-color: #3a4538;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #2c5530;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.submit-btn {
    background: #2c5530;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #3a4538;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .plans-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .plans-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .amenities-grid,
    .attractions-grid,
    .activities-grid,
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }

    .btn-reservar {
        margin-top: 1rem;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-content .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        max-height: 300px;
        object-fit: cover;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }

    /* Floor Plans */
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan {
        padding: 1.5rem;
    }
    
    .plan h3 {
        font-size: 1.5rem;
    }

    /* Amenities, Attractions, Activities, Restaurants */
    .amenities-grid,
    .attractions-grid,
    .activities-grid,
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amenity-card,
    .attraction-card,
    .activity-card,
    .restaurant-card {
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }

    /* Reservation Section */
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .reservation-note {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Sections */
    section {
        padding: 2.5rem 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    section p {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-image img {
        max-height: 250px;
    }

    /* Gallery */
    .gallery-item {
        height: 200px;
    }

    /* Floor Plans */
    .plan {
        padding: 1rem;
    }
    
    .plan h3 {
        font-size: 1.3rem;
    }

    /* Amenities, Attractions, Activities, Restaurants */
    .amenity-card,
    .attraction-card,
    .activity-card,
    .restaurant-card {
        padding: 1rem;
    }
    
    .amenity-card h4,
    .attraction-card h4,
    .activity-card h4,
    .restaurant-card h4 {
        font-size: 1.2rem;
    }

    /* Contact Section */
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Reservation Section */
    .reservation-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .reservation-note {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    /* Sections */
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 1.6rem;
    }

    /* Gallery */
    .gallery-item {
        height: 180px;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    /* Cards */
    .plan,
    .amenity-card,
    .attraction-card,
    .activity-card,
    .restaurant-card {
        padding: 0.8rem;
    }
    
    .info-item {
        padding: 0.7rem;
    }
    
    .reservation-note {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item img,
    .about-image img,
    .attraction-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Modal para imagens da galeria */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #333;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Botões de navegação do modal */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* Esconder botões em telas pequenas */
@media (max-width: 768px) {
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .modal-nav.prev {
        left: 10px;
    }
    
    .modal-nav.next {
        right: 10px;
    }
}

/* Animação do modal */
.modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cursor pointer para imagens da galeria */
.gallery-item {
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Print styles */
@media print {
    .navbar,
    .hero-content .cta-button,
    .btn-reservar,
    .btn,
    .submit-btn {
        display: none !important;
    }
    
    .hero-fullscreen {
        height: auto;
        min-height: 300px;
    }
    
    .hero-content {
        position: static;
        transform: none;
        text-align: left;
        color: #000;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.card {
    background: #fbfcfb; /* A very light green-tinted white */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: #fbfcfb; /* A very light green-tinted white */
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f0f2ef; /* Match the body's top gradient color */
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4a5548;
    box-shadow: 0 0 0 3px rgba(74, 85, 72, 0.2);
    background-color: #fff;
}

@media (max-width: 768px) {
    .plans-container, .gallery-grid, .amenities-grid, .attractions-grid, .activities-grid, .restaurants-grid {
        grid-template-columns: 1fr;
    }
} 