* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --verde: #1f8f5f;
    --verde-escuro: #12633f;
    --laranja: #ff9f1c;
    --amarelo: #ffd166;
    --bege: #fff7e8;
    --branco: #ffffff;
    --texto: #263238;
    --cinza: #6b7280;
    --sombra: 0 20px 50px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body {
    background: var(--bege);
    color: var(--texto);
    overflow-x: hidden;
}

.topbar {
    background: var(--verde-escuro);
    color: white;
    padding: 9px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 8px; }

.header {
    width: 100%;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}
.navbar {
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--verde-escuro);
    font-size: 22px;
    text-decoration: none;
}
.logo span {
    background: var(--laranja);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,159,28,.35);
}
.logo small {
    display: block;
    font-size: 12px;
    color: var(--cinza);
    font-weight: 600;
}
.menu { display: flex; align-items: center; gap: 25px; }
.menu a {
    color: var(--texto);
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}
.menu a:hover { color: var(--verde); }
.menu-mobile {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: var(--verde-escuro);
    cursor: pointer;
}

.btn {
    border: none;
    background: var(--laranja);
    color: white !important;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .3s;
    box-shadow: 0 12px 25px rgba(255,159,28,.3);
}
.btn:hover { transform: translateY(-3px); background: #f28c00; }
.btn-verde { background: var(--verde); box-shadow: 0 12px 25px rgba(31,143,95,.25); }
.btn-verde:hover { background: var(--verde-escuro); }

.hero {
    min-height: 88vh;
    padding: 70px 7%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 45px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,159,28,.18);
    right: -170px;
    top: 40px;
    z-index: -1;
}
.tag {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: white;
    color: var(--verde-escuro);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}
.hero h1 span { color: var(--laranja); }
.hero p {
    color: var(--cinza);
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 30px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.stats { display: flex; gap: 18px; flex-wrap: wrap; }
.stats div {
    background: white;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    min-width: 150px;
}
.stats strong { display: block; color: var(--verde-escuro); font-size: 24px; }
.hero-card {
    background: white;
    padding: 25px;
    border-radius: 35px;
    box-shadow: var(--sombra);
    transform: rotate(2deg);
}
.pet-card {
    min-height: 430px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1f8f5f, #8bd450);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.pet-card > i { font-size: 170px; opacity: .95; z-index: 2; }
.bolha { position: absolute; background: rgba(255,255,255,.22); border-radius: 50%; }
.b1 { width: 160px; height: 160px; top: 40px; left: 35px; }
.b2 { width: 90px; height: 90px; bottom: 55px; right: 45px; }
.b3 { width: 65px; height: 65px; top: 80px; right: 80px; }
.card-info {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(255,255,255,.92);
    color: var(--verde-escuro);
    border-radius: 20px;
    padding: 16px;
    z-index: 3;
}
.card-info strong, .card-info small { display: block; }

.section { padding: 85px 7%; }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 45px; }
.section-title span, .sobre-text span {
    color: var(--laranja);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.section-title h2, .sobre-text h2 {
    color: var(--verde-escuro);
    font-size: clamp(30px, 4vw, 46px);
    margin: 8px 0 12px;
}
.section-title p, .sobre-text p { color: var(--cinza); font-size: 17px; }
.grid-produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.produto-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
    transition: .3s;
    border: 1px solid rgba(0,0,0,.04);
}
.produto-card:hover { transform: translateY(-9px); box-shadow: var(--sombra); }
.icone {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: var(--bege);
    color: var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 20px;
}
.produto-card h3 { color: var(--verde-escuro); font-size: 20px; margin-bottom: 10px; }
.produto-card p { color: var(--cinza); font-size: 15px; line-height: 1.7; }

.sobre {
    background: white;
    padding: 85px 7%;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
    align-items: center;
}
.sobre-img {
    min-height: 420px;
    background: linear-gradient(135deg, var(--laranja), var(--amarelo));
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra);
    color: white;
}
.sobre-img i { font-size: 150px; }
.sobre-text p { margin-bottom: 18px; line-height: 1.8; }
.checklist { display: grid; gap: 10px; margin: 25px 0; }
.checklist p { color: var(--texto); font-weight: 600; margin: 0; }
.checklist i { color: var(--verde); margin-right: 8px; }

.delivery {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde));
    color: white;
    border-radius: 40px;
    margin: 70px 7%;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: var(--sombra);
}
.delivery h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.delivery p { opacity: .9; font-size: 17px; }

.avaliacoes { background: var(--bege); }
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.stars { color: var(--laranja); margin-bottom: 15px; }
.review p { color: var(--cinza); line-height: 1.7; margin-bottom: 18px; }
.review strong { color: var(--verde-escuro); }

.contato { background: white; padding: 85px 7%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-box { background: var(--bege); border-radius: 30px; padding: 35px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 22px; align-items: flex-start; }
.contact-item i {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--verde);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-item h4 { color: var(--verde-escuro); margin-bottom: 4px; }
.contact-item p { color: var(--cinza); line-height: 1.6; }
.mapa { border-radius: 30px; overflow: hidden; min-height: 420px; box-shadow: var(--sombra); background: #ddd; }
.mapa iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

footer { background: var(--verde-escuro); color: white; padding: 35px 7%; text-align: center; }
footer p { margin: 5px 0; }
.whatsapp-fixo {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37,211,102,.4);
    z-index: 1000;
    animation: pulse 1.7s infinite;
}
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.reveal { opacity: 0; transform: translateY(35px); transition: .8s; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 950px) {
    .hero, .sobre, .contact-grid, .delivery { grid-template-columns: 1fr; }
    .grid-produtos { grid-template-columns: repeat(2, 1fr); }
    .reviews { grid-template-columns: 1fr; }
    .delivery { margin: 50px 5%; }
}
@media (max-width: 760px) {
    .menu {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 7%;
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
        display: none;
    }
    .menu.active { display: flex; }
    .menu-mobile { display: block; }
    .hero { padding-top: 45px; }
    .grid-produtos { grid-template-columns: 1fr; }
    .pet-card, .sobre-img { min-height: 300px; }
    .delivery { padding: 35px 25px; border-radius: 30px; }
    .topbar { justify-content: center; text-align: center; }
    .logo { font-size: 17px; }
}
