/* Design System & Tokens */
:root {
    --primary-color: #3a4e4a; /* Dark Teal */
    --accent-color: #9eb599;  /* Sage Green */
    --highlight-color: #e2c98d; /* Gold/Yellow */
    --text-color: #2d3e3a;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Custom Selection */
::selection {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Suporte para Firefox e Mobile browsers modernos */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

/* Typography */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

.main-title {
    color: var(--primary-color);
    line-height: 1.1;
    font-size: clamp(2rem, 4.2vw, 2.8rem); /* Ajustado para caber em 3 linhas sem quebrar */
    font-weight: 800;
    text-transform: uppercase; /* Apenas no título */
    letter-spacing: -0.01em;
}

.text-highlight-hero {
    color: #6d8c69; /* Verde claro com mais contraste */
    font-weight: 900;
}



/* Footer adjustments */
footer .row {
    justify-content: center;
    text-align: center;
}
footer .copyright {
    display: block;
    margin: 0 auto;
}


.text-highlight {
    color: var(--highlight-color);
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.5; /* Altura da linha reduzida para um visual mais compacto */
    max-width: 550px;
    color: #4a5a57;
    font-weight: 400;
    margin-bottom: 3rem !important;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0; /* Aumentado levemente para ambas as versões */
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo {
    height: 30px; /* Logo menor para desktop minimalista */
    width: auto;
}

/* Section Hero */
#hero {
    min-height: 100vh;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px; /* Added breathing room */
    display: flex;
    align-items: center;
    overflow: hidden; /* Evita scroll lateral pela imagem aumentada */
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #fff;
}



.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% center; /* Voltando para a posição que estava */
    z-index: 1;
}

.hero-content {
    max-width: 800px; 
    position: relative;
    z-index: 10; /* Sempre acima de tudo */
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(158, 181, 153, 0.3);
}

.btn-cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58, 78, 74, 0.4);
}

/* Section Wellness Era */
#wellness-era {
    min-height: 100vh;
    background-color: #1a1a1a;
}

#wellness-era h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-transform: uppercase;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: slowZoom 20s infinite alternate ease-in-out; /* Adicionando sensação de movimento */
}

@keyframes slowZoom {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.email-link {
    color: var(--highlight-color);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    word-break: break-all;
}

.email-link:hover {
    color: var(--white);
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    border-top: none;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icon {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--highlight-color);
    transform: scale(1.2);
}

.back-to-top {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--highlight-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #hero {
        padding-top: 150px;
        padding-bottom: 150px;
        text-align: center;
        min-height: 100vh; /* Mantendo altura total no mobile */
        display: flex;
        align-items: center;
    }
    


            /* Hide the img on mobile and use a background image */
            .hero-background img {
                display: none;
            }
            .hero-background {
                background-image: url('bg-sessao-lp-yardz-v2.jpg');
                background-position: center 20%;
                background-size: cover;
                filter: blur(6px) brightness(0.8);
                transform: scale(1.6);
                opacity: 0;
                animation: fadeInMobile 1s forwards;
            }

        @keyframes fadeInMobile {
            to { opacity: 1; }
        }

    .main-title {
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        line-height: 1.5; /* Altura da linha aumentada para mobile */
    }

    .text-highlight-hero {
        color: var(--white); /* Removendo o verde no mobile para manter tudo branco */
    }

    .subtitle {
        color: var(--white);
        opacity: 0.9;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    #wellness-era {
        padding: 80px 0;
        text-align: center;
    }

    #wellness-era h2 {
        font-size: 2.5rem; /* Aumentado especificamente no mobile */
        line-height: 1.1;
    }

    .email-link {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 1.2rem 0;
    }

    .navbar.scrolled {
        background: var(--primary-color); /* Cor de fundo para contraste no mobile ao rolar */
    }

    .logo {
        height: 35px; /* Tamanho levemente maior no mobile para legibilidade */
    }

    footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo {
        height: 25px; /* Logo do rodapé mais compacta no mobile */
    }
    
    .footer-center {
        order: 3;
    }
    
    .footer-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }

    .social-links {
        margin-right: 0 !important; /* Remove margem lateral no mobile para centralizar */
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        width: 100%;
        padding: 1rem;
    }

    .glass-card {
        padding: 2.5rem 1.5rem !important;
    }
    
    .email-link {
        font-size: 1.2rem;
    }

    .navbar-brand .logo {
        height: 30px;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
/* Custom Cursor (Blend Mode Style) */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease-out, width 0.2s ease, height 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor.active {
    opacity: 1;
}

/* Hover state for links and buttons */
.cursor-hover {
    width: 60px;
    height: 60px;
}

/* Hide default cursor on desktop */
@media (min-width: 992px) {
    body, a, button {
        cursor: none !important;
    }
}

