:root {
    --brand: #32246d;
    --brand-dark: #251a56;
    --cyan: #139fd2;
    --cyan-light: #cbedfa;
    --lavender: #f0edf9;
    --cream: #f7f4ed;
    --ink: #19172a;
    --muted: #625f6e;
    --line: #dfdde5;
    --green: #168c56;
    --shell: 74rem;
    --shadow-lg: 0 24px 70px rgba(31, 23, 68, .15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Avenir Next", Avenir, Montserrat, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--brand); }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 850; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 12vw, 5.5rem); }
h2 { font-size: clamp(2rem, 8vw, 3.6rem); }
h3 { font-size: 1.35rem; }

.shell { width: min(var(--shell), calc(100% - 2rem)); margin-inline: auto; }
.narrow-shell { max-width: 48rem; }
.section { padding: 5.25rem 0; }
.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow-light { color: #74daf8; }
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.lead-small { color: var(--muted); font-size: 1.02rem; }
.button-row { display: grid; gap: .75rem; margin-top: 1.7rem; }
.button {
    min-height: 3.5rem;
    padding: .9rem 1.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .65rem;
    border: 1px solid transparent;
    border-radius: .8rem;
    text-decoration: none;
    text-align: center;
    font-size: .88rem;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--brand); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary { color: var(--brand); border-color: rgba(50, 36, 109, .25); background: #fff; }
.button-white { color: var(--brand); background: #fff; }
.button-whatsapp { color: #fff; background: var(--green); box-shadow: 0 16px 36px rgba(9, 65, 38, .25); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--brand);
    font-weight: 850;
    text-decoration: none;
    border-bottom: 2px solid var(--cyan-light);
}
.text-link-light { color: #fff; border-color: #74daf8; }

.hero {
    padding: 2.5rem 0 3.75rem;
    overflow: hidden;
    background: linear-gradient(145deg, #fbfaf6 0%, #f1eef9 100%);
}
.hero-grid { display: grid; gap: 2.4rem; }
.hero-copy h1 { max-width: 13ch; margin-bottom: 1.2rem; }
.hero-copy .lead { max-width: 35rem; }
.hero-notes { margin-top: 2rem; display: grid; gap: .75rem; }
.hero-notes span {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .5rem;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.4;
}
.hero-notes strong { color: var(--cyan); font-size: .68rem; letter-spacing: .08em; }
.hero-visual { position: relative; }
.hero-visual::before {
    content: "";
    position: absolute;
    inset: -1.2rem -4rem auto auto;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(19, 159, 210, .35);
    border-radius: 50%;
}
.hero-visual img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .78;
    display: block;
    object-fit: cover;
    border-radius: 1.4rem;
    box-shadow: var(--shadow-lg);
}
.hero-card {
    position: relative;
    width: calc(100% - 2rem);
    margin: -2.4rem auto 0;
    padding: 1.1rem 1.2rem;
    color: #fff;
    background: var(--brand);
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(32, 24, 77, .25);
}
.hero-card span, .hero-card strong { display: block; }
.hero-card span { color: #9ee8fc; font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { margin-top: .25rem; font-size: 1rem; }

.trust-strip { padding: 1.2rem 0; color: #fff; background: var(--brand); overflow: hidden; }
.trust-strip .shell { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; }
.trust-strip span { font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.trust-strip span::before { content: "•"; margin-right: .45rem; color: #74daf8; }

.section-heading { margin-bottom: 2.3rem; }
.section-heading h2 { max-width: 17ch; margin-bottom: 1.2rem; }
.section-heading p { max-width: 36rem; color: var(--muted); }
.services-grid { display: grid; gap: .8rem; }
.service-card {
    min-height: 17rem;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: #fff;
}
.service-card-featured { color: #fff; background: var(--brand); border-color: var(--brand); }
.service-number {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: auto;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--lavender);
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 900;
}
.service-card-featured .service-number { color: var(--brand); background: #83ddf7; }
.service-card h3 { margin: 2.2rem 0 .6rem; }
.service-card p { margin-bottom: 1rem; color: var(--muted); font-size: .88rem; }
.service-card-featured p { color: rgba(255, 255, 255, .75); }
.service-tag {
    margin-top: auto;
    padding: .32rem .58rem;
    color: var(--brand);
    background: var(--lavender);
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 850;
    text-transform: uppercase;
}
.service-card-featured .service-tag { color: #fff; background: rgba(255, 255, 255, .14); }

.section-dark { color: #fff; background: #17142b; }
.process-layout { display: grid; gap: 2.7rem; }
.process-copy p { color: rgba(255, 255, 255, .68); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .15); }
.process-list li {
    padding: 1.25rem 0;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.process-list li > span { color: #74daf8; font-size: .7rem; font-weight: 900; }
.process-list strong { font-size: 1rem; }
.process-list p { margin: .3rem 0 0; color: rgba(255, 255, 255, .62); font-size: .82rem; }

.benefits-layout { display: grid; gap: 3rem; }
.benefits-image { position: relative; }
.benefits-image img { width: 100%; max-height: 36rem; display: block; object-fit: cover; border-radius: 1.2rem; }
.image-caption {
    position: absolute;
    inset: auto .8rem .8rem;
    padding: 1rem;
    color: #fff;
    background: rgba(23, 20, 43, .86);
    border-radius: .8rem;
    font-size: .8rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
}
.benefits-copy h2 { margin-bottom: 1rem; }
.check-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: .8rem;
    border-top: 1px solid var(--line);
}
.check-list li > span {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--cyan-light);
    border-radius: 50%;
    font-weight: 900;
}
.check-list strong { font-size: .95rem; }
.check-list p { margin: .2rem 0 0; color: var(--muted); font-size: .8rem; }

.breeds-section { background: var(--cream); }
.centered-heading { text-align: center; }
.centered-heading h2, .centered-heading p { margin-inline: auto; }
.breed-grid { display: grid; gap: 1rem; }
.breed-grid article {
    position: relative;
    min-height: 24rem;
    overflow: hidden;
    border-radius: 1.1rem;
    background: var(--brand);
}
.breed-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.breed-grid article:hover img { transform: scale(1.025); }
.breed-grid article::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(20, 16, 44, .9));
}
.breed-grid article div { position: absolute; z-index: 1; inset: auto 1.25rem 1.1rem; color: #fff; }
.breed-grid span { color: #98e6fb; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.breed-grid h3 { margin: .2rem 0 0; font-size: 1.8rem; }

.about-section { background: linear-gradient(120deg, #fff, #f3f0f9); }
.about-grid { display: grid; gap: 1.5rem; }
.about-grid p { color: var(--muted); }
.cta-section { padding-top: 0; }
.cta-card {
    padding: 3rem 1.3rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand) 65%, #176f93);
    border-radius: 1.4rem;
    overflow: hidden;
}
.cta-card h2 { max-width: 18ch; margin-inline: auto; }
.cta-card p { max-width: 36rem; margin: 0 auto 1.5rem; color: rgba(255, 255, 255, .72); }

.page-hero { padding: 4.5rem 0 4rem; text-align: center; background: linear-gradient(145deg, #fbfaf6, var(--lavender)); }
.page-hero h1 { margin-bottom: 1.25rem; font-size: clamp(2.6rem, 10vw, 4.5rem); }
.page-hero p { color: var(--muted); font-size: 1.05rem; }
.faq-layout { display: grid; gap: 2.5rem; }
.faq-layout aside { padding: 1.5rem; align-self: start; background: var(--cream); border-radius: 1.1rem; }
.faq-layout aside h2 { font-size: 1.8rem; }
.faq-layout aside p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    padding: 1.35rem 2.5rem 1.35rem 0;
    position: relative;
    cursor: pointer;
    list-style: none;
    font-weight: 850;
    line-height: 1.35;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    inset-inline-end: .35rem;
    inset-block-start: 1rem;
    color: var(--brand);
    font-size: 1.6rem;
    font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -.3rem 2rem 1.4rem 0; color: var(--muted); font-size: .92rem; }
.cta-section-compact { padding-bottom: 5rem; }
.cta-section-compact .cta-card { padding-block: 2.5rem; }

.contact-page { color: #fff; background: #17142b; }
.contact-grid { padding-top: 3.5rem; padding-bottom: 4.5rem; display: grid; gap: 3rem; }
.contact-copy h1 { margin-bottom: 1.2rem; font-size: clamp(2.7rem, 11vw, 5rem); }
.contact-copy > p { color: rgba(255, 255, 255, .7); font-size: 1.05rem; }
.contact-prompt {
    margin: 2rem 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
}
.contact-prompt > span { font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-prompt ul { margin: .8rem 0 0; padding-left: 1.2rem; color: rgba(255, 255, 255, .7); font-size: .88rem; }
.contact-copy .button { width: 100%; }
.contact-number { margin-top: 1rem; display: block; color: rgba(255, 255, 255, .72); text-align: center; font-weight: 800; }
.contact-visual img { width: 100%; max-height: 34rem; display: block; object-fit: cover; border-radius: 1.2rem 1.2rem 0 0; }
.contact-info-card { padding: 1.4rem; display: grid; gap: 1.15rem; color: var(--ink); background: #fff; border-radius: 0 0 1.2rem 1.2rem; }
.contact-info-card div { display: grid; gap: .15rem; }
.contact-info-card span { color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-info-card strong, .contact-info-card a { color: var(--ink); overflow-wrap: anywhere; font-size: .88rem; text-decoration: none; }

@media (min-width: 600px) {
    .button-row { display: flex; flex-wrap: wrap; }
    .services-grid, .breed-grid { grid-template-columns: repeat(2, 1fr); }
    .breed-grid article:last-child { grid-column: 1 / -1; }
}

@media (min-width: 820px) {
    .shell { width: min(var(--shell), calc(100% - 4rem)); }
    .section { padding: 7rem 0; }
    .hero { padding: 5rem 0 6rem; }
    .hero-grid, .benefits-layout, .about-grid, .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .hero-copy { padding-right: 1rem; }
    .hero-copy h1 { font-size: clamp(3.7rem, 6.5vw, 5.4rem); }
    .hero-visual img { min-height: 33rem; aspect-ratio: auto; }
    .hero-card { width: 82%; margin-top: -3rem; }
    .trust-strip .shell { grid-template-columns: repeat(4, 1fr); }
    .split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 3rem; }
    .split-heading h2, .split-heading p { margin-bottom: 0; }
    .services-grid { grid-template-columns: repeat(6, 1fr); }
    .service-card { grid-column: span 2; }
    .service-card:nth-child(4) { grid-column: 2 / span 2; }
    .process-layout { grid-template-columns: .85fr 1.15fr; gap: 6rem; }
    .process-copy { position: sticky; top: 2rem; align-self: start; }
    .benefits-layout { gap: 6rem; }
    .benefits-copy { order: -1; }
    .breed-grid { grid-template-columns: repeat(3, 1fr); }
    .breed-grid article:last-child { grid-column: auto; }
    .about-grid { gap: 6rem; }
    .cta-card { padding: 4.5rem 2rem; }
    .page-hero { padding: 7rem 0 6rem; }
    .faq-layout { grid-template-columns: 18rem 1fr; gap: 5rem; }
    .faq-layout aside { position: sticky; top: 1.5rem; }
    .contact-grid { min-height: calc(100vh - 5.5rem); gap: 6rem; }
    .contact-copy .button { width: auto; }
    .contact-number { display: inline-block; margin-left: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
