:root {
    --primary:    #6f7750;
    --primary-dk: #2A4E36;
    --accent:     #A8C575;
    --warm:       #E8C89A;
    --bg:         #F7F4EE;
    --bg-alt:     #FFFFFF;
    --text:       #2C2C2C;
    --muted:      #6B7B6B;
    --white:      #FFFFFF;
    --ease:       0.35s cubic-bezier(.4,0,.2,1);
}

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

html { 
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59,107,74,.3);
}
.btn-primary:hover {
    background: var(--primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59,107,74,.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---- HEADER ---- */
.header {
    background: rgba(247,244,238,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(59,107,74,.1);
    transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

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


.nav a {
    text-decoration: none;
    color: var(--text);
    margin: 0 18px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: color var(--ease);
    position: relative;
}
.nav a::after {
    content:'';
    position:absolute;
    bottom:-3px; left:0;
    width:0; height:2px;
    background: var(--accent);
    transition: width var(--ease);
    border-radius:2px;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width:100%; }

/* ---- LOGO UPDATE ---- */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: .01em;
}
.logo span { color: var(--accent); }

/* ---- HERO ---- */
.hero {
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content:'';
    position: absolute;
    top: -120px; right: -180px;
    width: 700px; height: 700px;
    background: radial-gradient(circle at 60% 40%, rgba(168,197,117,.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 8s ease-in-out infinite alternate;
}
.hero::after {
    content:'';
    position: absolute;
    bottom: -100px; left: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,200,154,.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain; 
}

@keyframes floatBlob {
    from { transform: scale(1) translate(0,0); }
    to   { transform: scale(1.08) translate(20px, 15px); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(168,197,117,.18);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    border: 1px solid rgba(168,197,117,.4);
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text);
    font-weight: 700;
}
.hero-text h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
}
.stat { text-align:left; }
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px 80px 24px 80px;
    box-shadow: 0 30px 60px rgba(59,107,74,.18);
    display: block;
    object-fit: cover;
    height: 520px;
}

.hero-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatUp 4s ease-in-out infinite alternate;
}
@keyframes floatUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}
.badge-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items:center; justify-content:center;
    font-size: 1.2rem; color: var(--white);
}
.badge-text strong { display:block; font-size:.85rem; color:var(--text); }
.badge-text span { font-size:.75rem; color:var(--muted); }

/* ---- SOBRE ---- */
.sobre {
    padding: 100px 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 90px;
}
.sobre::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.sobre-image {
    flex: 1;
    position: relative;
}
.sobre-image::before {
    content:'';
    position:absolute;
    top:24px; left:24px;
    width:100%; height:100%;
    border-radius: 16px;
    background: rgba(168,197,117,.22);
    z-index: 0;
}
.sobre-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    height: 480px;
    position: relative;
    z-index: 1;
}

.sobre-text { flex: 1; }

.section-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.sobre-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.crn-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(59,107,74,.2);
}

.sobre-text p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
}

.diferenciais {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.diferencial-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}
.diferencial-item i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
}

/* ---- ESPECIALIDADES ---- */
.especialidades {
    padding: 100px 0;
    background: var(--bg);
    scroll-margin-top: 90px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

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

.card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: var(--ease);
    border: 1px solid rgba(59,107,74,.08);
    position: relative;
    overflow: hidden;
}
.card::after {
    content:'';
    position:absolute;
    bottom:0; left:0;
    width:100%; height:4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59,107,74,.12);
}
.card:hover::after { transform: scaleX(1); }

.card-icon-wrap {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(168,197,117,.25), rgba(59,107,74,.15));
    border-radius: 14px;
    display: flex; align-items:center; justify-content:center;
    margin-bottom: 22px;
}
.card-icon { font-size: 1.6rem; color: var(--primary); }

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ---- LISTA DE ENTREGAS (NOVA SEÇÃO) ---- */
.entregas {
    padding: 80px 0;
    scroll-margin-top: 90px;
}
.lista-entregas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.lista-entregas .diferencial-item {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.03);
    border: 1px solid rgba(59,107,74,.05);
}

/* ---- DEPOIMENTO ---- */
.depoimento {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
    position: relative;
    overflow: hidden;
}
.depoimento::before {
    content: '"';
    position: absolute;
    top: -40px; left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
}

.depoimento-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.depoimento-inner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
}
.depoimento-autor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.autor-avatar {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.2rem; color: var(--white);
}
.autor-info strong { display:block; color:var(--white); font-size:.9rem; }
.autor-info span { color: rgba(255,255,255,.65); font-size:.8rem; }

/* ---- FOOTER ---- */
.footer {
    background: #1C2B20;
    color: var(--white);
    padding: 70px 0 28px;
    scroll-margin-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo { color: var(--accent); font-size: 1.4rem; }
.footer-brand p {
    margin-top: 14px;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    font-weight: 300;
    max-width: 260px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-col p, .footer-col a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color var(--ease);
    font-weight: 300;
}
.footer-col a:hover { color: var(--accent); }
.footer-col i { color: var(--accent); width:16px; margin-top:2px; flex-shrink:0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: .82rem;
}

.footer-bottom a {
    text-decoration: none;
    color: rgba(255,255,255,.35);
}

/* ---- PRIVACY PAGE ---- */
.privacy-content {
    padding: 100px 0;
    background: var(--bg-alt);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--muted);
}

.privacy-text h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.privacy-text p {
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.privacy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 10px;
    font-weight: 300;
}

.privacy-text li i {
    color: var(--accent);
    margin-right: 8px;
}

.privacy-text .policy-effective {
    margin-top: 50px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--ease);
}

.back-home:hover {
    color: var(--accent);
}

/* ---- WHATSAPP ---- */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    background: #25d366;
    color: var(--white);
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    z-index: 1000;
    transition: var(--ease);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

/* ---- ANIMATE ON SCROLL ---- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: -150%; /* Escondido por padrão para a animação */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    z-index: 9999;
    padding: 20px 0;
    transition: bottom 0.6s cubic-bezier(.4,0,.2,1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: .88rem;
    color: var(--text);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.cookie-content a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background: var(--primary);
    transition: var(--ease);
}

.cookie-content a:hover { color: var(--accent); }
.cookie-content a:hover::after { background: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-content { flex-direction:column; gap:14px; }
    .nav { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
    .nav a { margin:0; }
    .hero-content, .sobre-content { flex-direction:column; }
    .hero-text h1 { font-size:2.4rem; }
    .hero-stats { gap:20px; }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    .hero-image img { height:300px; border-radius:20px; }
    .hero-badge { display:none; }
    .logo-img { max-height: 40px;}
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-content .btn {
        width: 100%;
        justify-content: center;
    }

    /* Ajuste de scroll-margin-top para mobile header mais alto */
    .sobre, .especialidades, .entregas, .footer {
        scroll-margin-top: 150px;
    }
}