:root {
    --primary: #1b3c33; /* Verde Profundo da Logo */
    --primary-light: #2d5a4c;
    --secondary: #fdfaf5; /* Creme/Champanhe para combinar com o Ouro */
    --accent: #b08d57;    /* Dourado da Logo */
    --text-dark: #1b3c33;
    --text-light: #6b7280;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout Utils --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--primary);
}

.close-menu-btn {
    display: none;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--secondary);
    padding-top: 100px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text-side {
    text-align: left;
}

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--primary-light);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 20px 40px -10px rgba(6, 78, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(6, 78, 59, 0.4);
}

.hero-image-side {
    width: 100%;
    height: 70vh;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* --- Rooms Section --- */
.rooms {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: scale(1.02);
}

.room-img {
    height: 250px;
    width: 100%;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    padding: 2.5rem;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.room-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Swiper Styles */
.room-swiper {
    width: 100%;
    height: 300px;
    --swiper-navigation-color: #ffffff; /* Seta Branca para contraste */
    --swiper-pagination-color: var(--primary);
}

.room-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.room-swiper img:hover {
    transform: scale(1.05);
}

.swiper-button-next, .swiper-button-prev {
    background: var(--primary) !important;
    color: #ffffff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.9;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
    background: var(--primary-light) !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
    z-index: 10001;
}

.lightbox-nav:hover {
    color: var(--accent);
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
}

.prev-lightbox { left: 20px; }
.next-lightbox { right: 20px; }

/* --- CTA Section --- */
.cta-banner {
    background: var(--primary);
    border-radius: 50px;
    padding: 6rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1001;
    }

    .close-menu-btn {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text-side {
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero p {
        margin: 0 auto 3rem auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-side {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    #sobre .container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .cta-banner {
        padding: 4rem 2rem;
    }

    .cta-banner h2 {
        font-size: 2.2rem;
    }

    footer .container {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }

    footer address {
        text-align: center;
    }

    footer .container:last-child {
        flex-direction: column;
        gap: 1rem;
    }
}
