:root {
    --primary: #2c5282;
    --accent: #b79147;
    --text: #1a202c;
    --glass: rgba(255, 255, 255, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fcfbf8; color: var(--text); overflow-x: hidden; }
* { text-decoration: none; list-style: none; }

.glass { background: var(--glass); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); border-radius: 24px; }

/* NAVBAR */
.navbar { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1100px; padding: 12px 30px; display: flex; justify-content: space-between; align-items: center; z-index: 3000; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.navbar img { height: 40px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: bold; }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.link-nav { text-decoration: none; color: var(--text); font-weight: 500; transition: 0.3s; }
.link-nav:hover { color: var(--primary); }
.btn-nav { padding: 10px 22px; border-radius: 50px; border: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-nav:hover { background: var(--primary); color: white; }

.menu-mobile-btn { 
    display: none; 
    cursor: pointer; 
    font-size: 2.5rem; 
    color: var(--primary) !important; 
    z-index: 6000 !important; 
    transition: 0.3s ease;
    position: relative;
}


.menu-overlay {
    display: none; 
    flex-direction: column;
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.mobile-links a { padding: 20px; display: block; font-size: 2.2rem; color: var(--primary); font-family: 'Playfair Display', serif; font-weight: bold; }
.btn-nav-mobile { background: var(--primary); color: white !important; padding: 15px 40px !important; border-radius: 50px; margin-top: 20px; }

/* HERO E CONTENÇÃO DE BOLHAS */
.hero { height: 100vh; padding: 0 8%; display: flex; align-items: center; position: relative; }
.hero-split { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 0px; }
.hero-content-left { flex: 1; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 3.8rem); line-height: 1.1; margin-bottom: 20px; }
h1 span { color: var(--accent); }

.hero-visual-right { flex: 1.2; position: relative; display: flex; justify-content: center; }
.hero-visual-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 550px; 
    overflow: hidden !important; /* Corta bolhas que saem do limite */
}
.hero-logo-container { position: relative; z-index: 10; }
.hero-logo-img { width: clamp(400px, 50vw, 600px); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }

.bubble { 
    position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; 
    filter: blur(1px); backdrop-filter: blur(2px); border: 0.5px solid rgba(255,255,255,0.3);
    animation: bubbleColor 8s infinite alternate ease-in-out;
}
@keyframes bubbleColor {
    0% { background: rgba(224, 234, 252, 0.6); }
    100% { background: rgba(183, 145, 71, 0.25); }
}

/* SERVIÇOS */
.services { padding: 100px 8%; background: #fff; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.service-card { padding: 60px 40px; text-align: center; border: 1px solid #f0f0f0; }
.emoji-icon { font-size: 4.5rem; display: block; margin-bottom: 25px; }

/* DEPOIMENTOS & CONTROLES */
.testimonials { padding: 100px 5%; background: #f8f9fa; }
.carousel-container { max-width: 1100px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; gap: 25px; transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.testimonial-card { min-width: 350px; padding: 50px; text-align: center; }
.stars { color: var(--accent); margin-bottom: 10px; }

.carousel-controls { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.btn-round { width: 55px; height: 55px; border-radius: 50%; border: 1px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; font-size: 1.2rem; transition: 0.3s; }
.btn-round:hover { background: var(--primary); color: white; }

/* FOOTER */
.footer { padding: 80px 5%; text-align: center; }
.map-box { height: 350px; width: 100%; border-radius: 24px; overflow: hidden; border: 1px solid #eee; margin-top: 20px; }
.map-box iframe { width: 100% !important; height: 100% !important; border: none; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 4000; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; text-decoration: none; }

/* RESPONSIVIDADE - AJUSTE MOBILE DE ALTURA */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-mobile-btn { display: flex; }
    
    .hero { 
        height: auto; 
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 50px;
        display: flex;
        align-items: flex-start; 
    }

    .hero-split { flex-direction: column-reverse; text-align: center; gap: 20px; }
    .hero-logo-img { width: 480px; max-width: 95vw; }
    .hero-visual-wrapper { height: 420px; margin-bottom: 20px; overflow: hidden !important; }
}