@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    /* Premium Nature Palette */
    --primary: #2d4a2d;
    --primary-light: #1a2e1a;
    --secondary: #b8975a;
    /* Gold */
    --background: #f5f0e8;
    /* Cream */
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Utility */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

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

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 151, 90, 0.3);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 20px 0;
    animation: fadeDown 1.2s ease both;
}

header.scrolled {
    background: var(--primary-light);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.logo span {
    color: var(--secondary);
    font-style: italic;
}

.logo i {
    display: none;
    /* Hide icon to match new style */
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 240, 232, 0.9);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: width 0.35s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-switcher i {
    color: var(--white);
    font-size: 1rem;
}

.language-switcher select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
}

.language-switcher select:focus {
    outline: none;
    border-color: var(--secondary);
}

.language-switcher select option {
    background: var(--primary-light);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('fotos/slide1.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(5, 15, 5, 0.45) 100%);
    pointer-events: none;
}

/* Background image slideshow via CSS animation - Using original images */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    filter: saturate(1.2) contrast(1.1) brightness(0.9);
    transform: scale(1.04);
    animation: heroSlideshow 25s infinite, slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10, 25, 10, 0.38) 0%,
            rgba(15, 35, 15, 0.12) 40%,
            rgba(10, 25, 10, 0.55) 100%),
        linear-gradient(to right,
            rgba(10, 25, 10, 0.3) 0%,
            transparent 50%,
            rgba(10, 25, 10, 0.2) 100%);
}

@keyframes heroSlideshow {

    0%,
    15% {
        background-image: url('fotos/slide1.jpg');
    }

    20%,
    35% {
        background-image: url('fotos/slide2.jpg');
    }

    40%,
    55% {
        background-image: url('fotos/slide3.jpg');
    }

    60%,
    75% {
        background-image: url('fotos/slide4.jpg');
    }

    80%,
    95% {
        background-image: url('fotos/slide5.jpg');
    }

    100% {
        background-image: url('fotos/slide1.jpg');
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    animation: fadeUp 1.4s 0.3s ease both;
}

.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--background);
    margin-bottom: 12px;
    text-shadow: none;
    letter-spacing: 0.02em;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--white);
    font-weight: 300;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--secondary);
    margin: 24px auto;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.8);
    text-transform: uppercase;
    margin-bottom: 44px;
}

.btn-reserve {
    display: inline-block;
    border: 1px solid var(--secondary);
    color: var(--background);
    background-color: var(--secondary);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 44px;
    font-weight: 500;
    transition: background 0.35s, color 0.35s;
    position: relative;
    overflow: hidden;
}

.btn-reserve:hover {
    background-color: transparent;
    color: var(--primary-light);
}

/* SCROLL INDICATOR */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeUp 1.4s 1s ease both;
    color: var(--white);
}

.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STRIP BELOW HERO */
.strip {
    background: var(--primary-light);
    padding: 28px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(184, 151, 90, 0.3);
    border-bottom: 1px solid rgba(184, 151, 90, 0.15);
    flex-wrap: wrap;
}

.strip-item {
    text-align: center;
    min-width: 140px;
}

.strip-item .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary);
    line-height: 1;
}

.strip-item .label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 4px;
}

/* Sections General */
section {
    padding: 6rem 0;
    background-color: var(--background);
    /* Cream base */
}

.section-bg-alt {
    background-color: var(--white);
    /* White alternate */
}

/* Split Layout (Text + Image) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse>* {
    direction: ltr;
}

.text-content {
    animation: fadeUp 1.4s 0.3s ease both;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95);
}

.image-wrapper:hover {
    box-shadow: -10px 25px 45px rgba(0, 0, 0, 0.15);
}

.image-wrapper:hover img {
    transform: scale(1.04);
}

/* Feature Cards Grid (Acomodações / Lazer) */
.acomodacoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.acomodacoes-grid .image-wrapper {
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.acomodacoes-grid .image-wrapper img,
.acomodacoes-grid .image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acomodacoes-grid .contact-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.acomodacoes-grid .contact-info p {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #dfec44;
    /* Standard light green from reference */
    background-color: rgba(223, 236, 228, 1);
    /* rgb(223, 236, 228) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i,
.icon-wrapper svg {
    width: 20px;
    height: 20px;
    color: #2E6043;
    /* Dark forest green */
    stroke-width: 2;
}

.amenity-item span {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 400;
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Meals Grid */
.meals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .meals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.meal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.meal-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.meal-info p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

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

.card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 400;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Image Gallery Style Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 26, 0.85), rgba(45, 74, 34, 0));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}


/* Footer / Contato */
footer {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 5rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.footer-content h2 {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
}

.contact-info {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: rgba(245, 240, 232, 0.8);
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(184, 151, 90, 0.2);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    letter-spacing: 0.05em;
}

/* Animations classes (controlled by JS) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-layout.reverse {
        direction: ltr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-fast);
    }

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

    .strip {
        gap: 20px;
        padding: 24px 15px;
    }

    .strip-item {
        width: 40%;
        min-width: unset;
    }
}