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

:root {
    --pink: #e86c9a;
    --pink-dark: #c94f7d;
    --pink-soft: #fff0f5;
    --cream: #fffaf7;
    --brown: #513d3d;
    --text: #5f5151;
    --white: #fff;
    --shadow: 0 15px 45px rgba(89, 50, 64, .10);
}

html { scroll-behavior: smooth; }

body {
    font-family: "Nunito", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    box-shadow: 0 2px 20px rgba(60,40,40,.07);
    transition: .3s ease;
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 180px;
    object-fit: contain;
}
.logo b { color: var(--pink); }
.logo-icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--pink-soft);
    font-size: 1.35rem;
}

.menu { display: flex; align-items: center; gap: 25px; }
.menu a {
    font-size: .92rem;
    font-weight: 800;
    color: #665757;
    position: relative;
}
.menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -7px;
    width: 0; height: 2px;
    background: var(--pink);
    transition: width .25s;
}
.menu a:hover { color: var(--pink-dark); }
.menu a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 0; background: var(--pink-soft);
    border-radius: 12px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--brown);
    margin: 5px auto;
}

.hero { padding-top: 76px; }
.slider { height: min(640px, calc(100vh - 76px)); min-height: 500px; position: relative; overflow: hidden; }
.slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .8s ease, transform 5s ease;
}
.slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(35,25,27,.58), rgba(35,25,27,.08) 70%);
}
.slide-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
}
.eyebrow, .section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .74rem;
    font-weight: 900;
}
.eyebrow {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.4);
    padding: 7px 13px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.slide h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.06;
    max-width: 720px;
    font-weight: 800;
}
.slide h1 strong { color: #ffd1e0; }
.slide p { max-width: 560px; font-size: 1.1rem; margin: 20px 0 28px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border-radius: 50px;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: white; box-shadow: 0 10px 25px rgba(232,108,154,.35); }
.btn-primary:hover { background: var(--pink-dark); }

.slider-controls {
    position: absolute; z-index: 5;
    left: 50%; bottom: 25px;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 12px;
}
.slider-controls button {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.2);
    color: white; border-radius: 50%;
    cursor: pointer; font-size: 1.5rem;
}
.dots { display: flex; gap: 7px; }
.dot { width: 9px; height: 9px; border: 0 !important; background: rgba(255,255,255,.5) !important; }
.dot.active { width: 27px; border-radius: 10px !important; background: white !important; }

.section { padding: 95px 0; }
.intro { background: white; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.section-tag { color: var(--pink-dark); margin-bottom: 8px; }
h2 {
    color: var(--brown);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 15px;
}
.intro h2 span { color: var(--pink); }
.intro p { font-size: 1.08rem; }

.section-heading { text-align: center; max-width: 750px; margin: 0 auto 50px; }
.section-heading p { color: #7b6c6c; }

.services { background: var(--pink-soft); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.service-card {
    background: white; border-radius: 24px;
    padding: 35px; box-shadow: var(--shadow);
    transition: transform .25s;
}
.service-card:hover { transform: translateY(-7px); }
.service-card.featured { background: var(--pink); color: white; }
.card-icon {
    width: 65px; height: 65px; display: grid; place-items: center;
    border-radius: 18px; background: var(--pink-soft);
    font-size: 1.8rem; margin-bottom: 22px;
}
.featured .card-icon { background: rgba(255,255,255,.2); }
.service-card h3 { font-size: 1.35rem; color: var(--brown); margin-bottom: 9px; }
.featured h3 { color: white; }
.service-card a { display: inline-block; margin-top: 20px; color: var(--pink-dark); font-weight: 900; }
.featured a { color: white; }

.products { background: white; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product { background: var(--cream); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 25px rgba(80,50,50,.06); }
.product-img { height: 240px; background-size: cover; background-position: center; }
.product-body { padding: 20px; }
.product h3 { color: var(--brown); margin-bottom: 4px; }
.product p { font-size: .9rem; }

.gallery-section { background: var(--cream); }
.gallery { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: 210px; gap: 15px; }
.gallery-item, .pet-item {
    border: 0; padding: 0; cursor: pointer;
    overflow: hidden; border-radius: 18px;
    background: #ddd;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img, .pet-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .5s;
}
.gallery-item:hover img, .pet-item:hover img { transform: scale(1.07); }

.pets-section {
    background: linear-gradient(135deg, #503b3d, #76545c);
    color: white;
}
.section-heading.light h2, .section-heading.light p { color: white; }
.section-heading.light .section-tag { color: #ffd1e0; }
.pet-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.pet-item { height: 280px; }

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-info h2 { max-width: 520px; }
.contact-list { margin-top: 30px; display: grid; gap: 18px; }
.contact-list > * {
    display: flex; align-items: center; gap: 15px;
}
.contact-list > * > span {
    width: 48px; height: 48px; flex: 0 0 48px;
    display: grid; place-items: center;
    background: var(--pink-soft); border-radius: 14px;
}
.contact-list small { display: block; color: #998888; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }
.contact-list strong { color: var(--brown); }

.contact-box {
    background: var(--pink-soft);
    border-radius: 30px; padding: 45px;
    text-align: center; box-shadow: var(--shadow);
}
.contact-box-top > span { font-size: 2.5rem; }
.contact-box h3 { color: var(--brown); font-size: 1.7rem; margin: 8px 0; }
.btn-whatsapp { width: 100%; background: #25d366; color: white; margin-top: 25px; }
.btn-whatsapp:hover { background: #1db954; }
.small-note { margin-top: 12px; font-size: .78rem; color: #8f7c82; }

.footer { background: #3d3032; color: #eadfe1; }
.footer-grid { padding: 55px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-logo { color: white; margin-bottom: 12px; }
.footer h4 { color: white; margin-bottom: 10px; }
.footer p { font-size: .9rem; color: #cbbcc0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .78rem; color: #bbaeb1; }

.floating-whatsapp {
    position: fixed; z-index: 900;
    right: 22px; bottom: 22px;
    background: #25d366; color: white;
    padding: 13px 19px; border-radius: 50px;
    display: flex; gap: 9px; align-items: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.35);
    font-size: .9rem;
}
.floating-whatsapp span { font-size: 1.2rem; }

.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(20,15,17,.9);
    display: none; align-items: center; justify-content: center;
    padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 15px; }
.lightbox-close {
    position: absolute; top: 20px; right: 25px;
    border: 0; background: none; color: white;
    font-size: 3rem; cursor: pointer; line-height: 1;
}

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .menu {
        position: absolute; top: 76px; left: 0; width: 100%;
        display: none; flex-direction: column; align-items: stretch;
        background: white; padding: 15px 20px 20px;
        box-shadow: 0 15px 25px rgba(0,0,0,.08);
    }
    .menu.open { display: flex; }
    .menu a { padding: 10px 5px; }
    .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
    .cards { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2,1fr); }
}




@media (max-width: 650px) {
    .logo-img {
        height: 42px;
        max-width: 150px;
    }
    .container { width: min(100% - 28px, 1140px); }
    .nav { min-height: 68px; }
    .hero { padding-top: 68px; }
    .slider { height: 560px; min-height: 0; }
    .slide { background-position: center; }
    .slide-content { padding-top: 20px; }
    .slide h1 { font-size: 2.5rem; }
    .slide p { font-size: .98rem; }
    .section { padding: 65px 0; }
    .product-grid { grid-template-columns: 1fr; }
    .product-img { height: 260px; }
    .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
    .gallery-item.large { grid-row: span 2; }
    .pet-gallery { grid-template-columns: 1fr 1fr; }
    .pet-item { height: 190px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .floating-whatsapp { right: 14px; bottom: 14px; padding: 12px 16px; }
}


/* MENU DOS MESES */

.months-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.month-btn {
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
}

.month-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.month-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}


/* GALERIA DE CADA MÊS */

.month-gallery {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.month-gallery.active {
    display: grid;
}


/* FOTOS */

.month-gallery .pet-item {
    width: 100%;
    height: 230px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #ddd;
}

.month-gallery .pet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.month-gallery .pet-item:hover img {
    transform: scale(1.08);
}


/* TABLET */

@media (max-width: 900px) {

    .month-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .months-menu {
        gap: 7px;
    }

    .month-btn {
        padding: 8px 13px;
        font-size: 0.8rem;
    }

    .month-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .month-gallery .pet-item {
        height: 180px;
    }

}