/* Nunito Sans */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunitosans-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunitosans-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/nunitosans-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Dancing Script */
@font-face {
    font-family: 'Dancing Script';
    src: url('../fonts/dancingscript-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dancing Script';
    src: url('../fonts/dancingscript-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* --- VARIABLES --- */
:root {
    --primary-green: #B5D588;
    --primary-dark: #8CA864;
    --whatsapp-color: #6d8a52;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-grey: #f9f9f9;
    --font-main: 'Nunito Sans', sans-serif;
    --font-brand: 'Dancing Script', cursive;
}

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

html { 
    scroll-behavior: smooth;
}

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

main {
    position: relative;
    width: 100%;
}

main {
    position: relative;
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

ul { 
    list-style: none; 
}

/* --- GENERAL CLASSES --- */
.container { 
    max-width: 1200px; 
    width: 100%;
    margin: 0 auto; 
    padding: 0 20px;
    box-sizing: border-box;
}

.section { 
    padding: 80px 0; 
    position: relative;
    width: 100%;
    max-width: 100%;
}

.bg-light { 
    background-color: var(--bg-grey); 
}

.highlight-font { 
    font-family: var(--font-brand); 
    color: var(--primary-green); 
    font-weight: 400; 
}

.brand-font { 
    font-family: var(--font-brand); 
}

.center { 
    text-align: center; 
}

/* --- BUTTONS --- */
.btn { 
    display: inline-block; 
    background-color: var(--primary-green); 
    color: #334422; 
    padding: 12px 30px; 
    border-radius: 50px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border: none; 
    cursor: pointer; 
}

.btn:hover { 
    background-color: var(--primary-dark); 
    color: #fff; 
    transform: translateY(-2px); 
}

.btn-small { 
    padding: 8px 20px; 
    font-size: 0.9rem; 
}

.btn-whatsapp { 
    margin-top: 20px; 
    background-color: var(--whatsapp-color); 
    color: white; 
    width: 100%; 
    text-align: center; 
}

.btn-whatsapp:hover { 
    background-color: var(--primary-dark); 
}

/* --- HEADER & MENU --- */
.header { 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(5px); 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo { 
    font-family: var(--font-brand); 
    font-size: 2rem; 
    color: var(--primary-green); 
}

.nav-list { 
    display: flex; 
    gap: 30px; 
}

.nav-link { 
    font-weight: 600; 
    font-size: 1rem; 
}

.nav-link:hover { 
    color: var(--primary-green); 
}

.burger-btn { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    z-index: 1100; 
}

.burger-btn span { 
    width: 25px; 
    height: 3px; 
    background-color: var(--text-dark); 
    transition: 0.3s; 
}

/* --- HERO --- */
.hero-section { 
    padding: 40px 0 80px; 
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: center; 
    gap: 50px; 
}

.hero-text h1 { 
    font-size: 3rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
}

.hero-text span { 
    font-size: 4rem; 
}

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

.blob-image { 
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
    width: 100%; 
    box-shadow: 10px 10px 30px rgba(181, 213, 136, 0.3); 
}

/* --- ABOUT --- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.brand-title { 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    color: var(--primary-green); 
}

.rounded-image { 
    border-radius: 20px 100px 20px 100px; 
    width: 100%; 
}

.benefits-list { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-top: 30px; 
}

.benefits-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
}

.icon { 
    font-size: 1.5rem; 
}

/* --- SERVICES --- */
.section-header { 
    margin-bottom: 50px; 
}

.section-title { 
    font-size: 3rem; 
    color: var(--primary-green); 
    margin-bottom: 10px; 
}

.price-section { 
    margin-top: 20px; 
    border-top: 1px solid #eee; 
    padding-top: 15px; 
}

.price-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 8px; 
    font-size: 1rem; 
    color: var(--primary-green); 
}

.price-row strong { 
    font-size: 1.1rem; 
}

.services-features { 
    display: flex; 
    flex-direction: column; 
    gap: 80px;
    width: 100%;
}

.service-feature { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center;
    width: 100%;
}

.service-feature:nth-child(even) .service-video-container { 
    order: 2; 
}

.service-description { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.service-description h3 { 
    font-size: 2rem; 
    font-family: var(--font-brand); 
    color: var(--primary-green); 
    margin-bottom: 15px; 
}

.service-description p { 
    margin-bottom: 15px; 
}

.service-description .price-section { 
    width: 100%; 
    max-width: 350px; 
}

.service-video-container { 
    position: relative; 
    cursor: pointer; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transition: transform 0.3s;
    width: 100%;
    min-width: 0;
}

.service-video-container:hover { 
    transform: scale(1.03); 
}

.video-placeholder { 
    position: relative; 
    width: 100%; 
    padding-top: 56.25%; 
    height: 0; 
    overflow: hidden;
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(140, 168, 100, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-overlay span {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* --- VIDEO MODAL --- */
.video-modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.85); 
    z-index: 2000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s; 
    padding: 20px; 
}

.video-modal.active { 
    opacity: 1; 
    pointer-events: auto; 
}

.modal-content { 
    position: relative; 
    display: block; 
    height: 85vh; 
    width: calc(85vh * (9 / 16)); 
    max-width: 95vw; 
    max-height: 95vh; 
    transform: scale(0.8); 
    transition: transform 0.3s; 
}

.video-modal.active .modal-content { 
    transform: scale(1); 
}

#vimeo-player-container { 
    width: 100%; 
    height: 100%; 
    background: #000; 
    border-radius: 5px; 
    overflow: hidden; 
}

.close-modal { 
    position: absolute; 
    top: -5px; 
    right: -40px; 
    font-size: 3rem; 
    color: #fff; 
    cursor: pointer; 
    line-height: 1; 
    text-shadow: 0 0 10px rgba(0,0,0,0.5); 
}

@media (max-width: 600px) { 
    .close-modal { 
        top: -30px; 
        right: 0px; 
        background: rgba(0,0,0,0.4); 
        border-radius: 50%; 
        width: 25px; 
        height: 25px; 
        font-size: 1.5rem; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    } 
}

/* --- CONTACT --- */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px; 
    align-items: stretch; 
}

.map-wrapper { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.map-card { 
    display: block; 
    position: relative; 
    width: 100%; 
    flex-grow: 1; 
    min-height: 400px; 
    border-radius: 20px; 
    overflow: hidden; 
    background-color: #eee; 
    cursor: pointer; 
    -webkit-tap-highlight-color: transparent; 
}

.map-bg { 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    transition: transform 0.5s ease; 
    background-color: #e0e0e0; 
}

.map-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.4); 
    opacity: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    transition: opacity 0.3s ease; 
}

.btn-map { 
    background-color: #fff; 
    color: var(--text-dark); 
    transform: translateY(20px); 
    transition: 0.3s ease; 
    opacity: 0; 
    pointer-events: none; 
}

@media (hover: hover) { 
    .map-card:hover .map-overlay { 
        opacity: 1; 
    } 
    .map-card:hover .btn-map { 
        opacity: 1; 
        transform: translateY(0); 
        pointer-events: auto; 
    } 
    .map-card:hover .map-bg { 
        transform: scale(1.05); 
    } 
}

.map-card.hover-effect .map-overlay { 
    opacity: 1; 
}

.map-card.hover-effect .btn-map { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto; 
}

.map-card.hover-effect .map-bg { 
    transform: scale(1.05); 
}

.address-hint { 
    margin-top: 10px; 
    font-size: 0.9rem; 
    color: var(--text-light); 
    text-align: center; 
}

.contact-info { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.info-block { 
    margin-bottom: 30px; 
    text-align: center; 
}

.info-block h4 { 
    font-size: 1.5rem; 
    color: var(--primary-green); 
    margin-bottom: 10px; 
    font-family: var(--font-brand); 
}

.hours-container { 
    display: inline-block; 
    text-align: left; 
    margin: 0 auto; 
}

.hours-row { 
    display: grid; 
    grid-template-columns: 40px auto; 
    gap: 15px; 
    font-family: monospace; 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
}

.phone-link { 
    color: var(--primary-green); 
    font-weight: 600; 
}

.phone-link:hover { 
    color: var(--primary-dark); 
}

/* --- FOOTER --- */
.footer { 
    padding: 40px 0; 
    border-top: 1px solid #eee; 
    margin-top: 50px; 
}

.footer-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.footer-logo { 
    font-size: 1.5rem; 
}

.footer-legal a { 
    margin-left: 20px; 
    font-size: 0.9rem; 
    color: var(--text-light); 
}

/* --- MOBILE ADAPTIVE --- */
@media (max-width: 900px) {
    body.nav-active { 
        overflow: hidden;
    }
    
    .burger-btn { 
        display: flex;
        z-index: 1200;
        position: relative;
    }
    
    .mobile-hidden { 
        display: none; 
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        z-index: 1100;
        pointer-events: none;
        transition: background 0.3s;
    }
    
    .nav.active {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }
    
    .nav-list { 
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        font-size: 1.2rem;
        overflow-y: auto;
        clip-path: inset(0 0 0 100%);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav.active .nav-list {
        clip-path: inset(0 0 0 0);
    }
    
    .burger-btn.open span:nth-child(1) { 
        transform: rotate(45deg) translate(5px, 6px); 
    }
    
    .burger-btn.open span:nth-child(2) { 
        opacity: 0; 
    }
    
    .burger-btn.open span:nth-child(3) { 
        transform: rotate(-45deg) translate(5px, -6px); 
    }
    
    .burger-btn.open span:nth-child(1) { 
        transform: rotate(45deg) translate(5px, 6px); 
    }
    
    .burger-btn.open span:nth-child(2) { 
        opacity: 0; 
    }
    
    .burger-btn.open span:nth-child(3) { 
        transform: rotate(-45deg) translate(5px, -6px); 
    }

    .hero-grid, 
    .about-grid, 
    .contact-grid, 
    .service-feature { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
    
    .service-feature:nth-child(even) .service-video-container, 
    .service-video-container { 
        order: -1; 
    }
    
    .service-description { 
        align-items: center; 
    }
    
    .services-features {
        gap: 50px;
    }

    .hero-text h1 { 
        font-size: 2.2rem; 
    }
    
    .hero-text span { 
        font-size: 3rem; 
    }
    
    .benefits-list { 
        text-align: left; 
    }
    
    .about-image-wrapper { 
        order: -1; 
    }
    
    .contact-grid { 
        gap: 30px; 
    }
    
    .map-card { 
        min-height: 300px; 
    }
    
    .footer-flex { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .footer-legal a { 
        margin: 0 10px; 
        display: inline-block; 
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .service-feature {
        gap: 20px;
    }
    
    .services-features {
        gap: 40px;
    }
}

/* --- SOCIAL ICONS --- */
.social-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-green);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}