@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-brand: #648D3C;
    --primary-brand-dark: #47562D;
    --primary-brand-deep: #577a32;
    --sage-faq: rgba(207, 220, 195, 0.5);
    --sage-50: #CFDCC3;
    --sage: rgba(100, 141, 60, .5);
    --text-dark: #203616;
    --text-main-banner: #EEF1EB;
    --text-body: #444;
    --white: #fff;

    --fs-46: 46px;
    --fs-32: 32px;
    --fs-28: 28px;
    --fs-24: 24px;
    --fs-20: 20px;
    --fs-14: 14px;
    --font: 'Open Sans', 'Segoe UI', Tahoma, Verdana, Arial, sans-serif;

    --maxw: 1512px;
    --pad-x: 60px;
    --anchor-offset: 110px;
    --title-size: 30px;
    --radius-md: 8px;
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, .06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    max-width: var(--maxw);
    margin: 0 auto;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    line-height: 1.5;
    background: var(--white);
}

html {
    scroll-padding-top: var(--anchor-offset);
}

[id] {
    scroll-margin-top: var(--anchor-offset);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}


.wrap,
.nav,
.hero-inner,
.apoio-inner,
.mob-inner,
.gama,
.video,
.testi-inner,
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffffcc;
    box-shadow: #00000040 0px 4px 8px 0px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--pad-x);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-brand-dark);
    letter-spacing: -.5px;
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
}

.logo .dot {
    color: var(--primary-brand);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    list-style: none;
}

nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

nav a:hover {
    color: var(--primary-brand);
}

.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #c7d4b3;
    border-radius: 999px;
    background: #fff;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.lang-btn.active {
    background: var(--primary-brand-dark);
    border-color: var(--primary-brand-dark);
    color: #fff;
}

.hero {
    max-height: 510px;
}

.hero,
.mobilidade {
    background: var(--primary-brand);
    color: var(--text-main-banner);
    overflow: hidden;
}

.hero-inner,
.mob-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-inner {
    min-height: 500px;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);

}

.mob-inner {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}

.hero-text {
    max-width: 560px;
}

.hero h1 {
    margin-bottom: 26px;
    font-size: var(--fs-46);
    font-weight: 700;
    line-height: 1.05;
}

.hero p {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
}

.mob-text {
    max-width: 600px;
    font-size: var(--fs-32);
    line-height: 1.3;
    text-align: right;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform 1.6s ease;
}

.mob-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mob-text .big {
    font-size: 42px;
    font-weight: 700;
}

.hero-img,
.mob-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-img {
    padding-top: 16px;
    width: 632px;
    height: 482px;
    font-size: 14px;
}

.mob-img {
    width: 550px;
    height: 389px;
    margin-top: 38px;
}

.hero-img img,
.mob-img img {
    display: block;
    object-fit: fill;
}

.apoio {
    margin-top: 71px;
    margin-bottom: 71px;
    background: var(--sage-50);
}

.apoio-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 45px var(--pad-x);
}

.joint-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 300px;
    height: 300px;

    overflow: hidden;
}

.joint-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.apoio h2 {
    margin-bottom: 16px;
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--text-dark);
}

.apoio p {
    margin-bottom: 8px;
    font-size: var(--fs-20);
    color: var(--text-dark);
}

.apoio strong {
    color: var(--text-dark);
}

.gama {
    padding: 55px var(--pad-x);
    background: var(--white);
}

.gama h2,
.comp h2,
.testi-head h2,
.faq h2,
.form-block h2,
.two-col h2 {
    text-align: center;
    font-size: var(--title-size);
    font-weight: 700;
    color: var(--text-dark);
}

.gama h2 {
    margin-bottom: 40px;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product {
    text-align: center;
}

.product .box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 430px;
    padding: 20px;
}

.product .box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product .caption,
.products>.caption {
    margin-top: 18px;
    font-size: var(--fs-20);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.products>.caption.caption-diario {
    grid-column: 1 / 3;
}

.products>.caption.caption-avancado {
    grid-column: 3 / 4;
}

.form-block {
    margin-bottom: 71px;
    padding: 35px var(--pad-x) 15px var(--pad-x);
    background: var(--sage);
}

.form-block.is-open {
    position: fixed;
    inset: 0;
    z-index: 120;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(32, 54, 22, 0.52);
}

.form-inner,
.faq-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.form-block.is-open .form-inner {
    position: relative;
    width: min(1100px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: 46px clamp(18px, 4vw, 42px) 36px;
    border-radius: 14px;
    background: #eff2f7;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.form-modal-close {
    display: none;
}

.form-block.is-open .form-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: var(--primary-brand-dark);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.form-block h2 {
    line-height: 1.3;
}

.form-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.form-row input[type=email] {
    width: 100%;
    max-width: 900px;
    padding: 18px 22px;
    border: 1px solid #b7c79b;
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 16px;
}

.form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.btn {
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--primary-brand);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover {
    background: #3a4624;
}

.consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.consent a {
    font-weight: 700;
    text-decoration: underline;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.benefits,
.quando {
    padding: 45px var(--pad-x);
}

.benefits {
    background: var(--sage-50);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.quando {
    background: var(--sage);
}

.two-col h2 {
    margin-bottom: 34px;
    text-align: left;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    align-items: center;
}

.list-item .ic {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    color: var(--primary-brand-dark);
    font-size: 20px;
    font-weight: 700;
}

.list-item .ic img {
    object-fit: contain;
}

.list-item p {
    font-size: var(--fs-20);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

footer {
    margin-top: 71px;
    background: var(--primary-brand-dark);
    color: var(--white);
}

.comp,
.avaliacao {
    background: var(--primary-brand);
    color: var(--white);
}

.comp {
    padding: 46px var(--pad-x);
}

.comp h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    margin: 0 auto;
    text-align: center;
}

.comp-grid h3 {
    margin-bottom: 8px;
    font-size: var(--fs-24);
    font-weight: 600;
}

.comp-grid p {

    line-height: 1.4;
}

.video {
    padding: 50px 0;
}



.testi {
    padding: 45px var(--pad-x);
    background: var(--sage-50);
}

.testi-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 30px;
}

.testi-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi-head h2 {
    line-height: 1.2;
    text-align: left;
}

.seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    padding: 14px;

    text-align: center;
    text-transform: uppercase;
    color: var(--primary-brand);
    font-size: 11px;
    font-weight: 700;
}

.seal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cards {
    display: flex;
    align-items: center;
    gap: 14px;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-brand);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.vet-carousel,
.client-carousel {
    display: block;
    flex: 1;
    padding: 0 54px;
}

.vet-carousel .carousel-cell,
.client-carousel .carousel-cell {
    width: 303px;
    margin-right: 20px;
}

.box.b20 {
    transform: scale(1.05);
    transition: transform 2.3s 3s ease;
}

.tcard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 330px;
    padding: 24px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.quote-icon {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
    object-fit: contain;
}

.tcard .quote {
    font-size: 15px;
    font-style: italic;
    color: #555;
}

.tcard .who {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.tcard .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.tcard .sub {
    font-size: 13px;
    color: #888;
}

.check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.flickity-button {
    background: var(--primary-brand);
}

.vet-carousel .flickity-prev-next-button,
.client-carousel .flickity-prev-next-button {
    width: 42px;
    height: 42px;
}

.vet-carousel .flickity-prev-next-button.previous,
.client-carousel .flickity-prev-next-button.previous {
    left: 42px;
}

.vet-carousel .flickity-prev-next-button.next,
.client-carousel .flickity-prev-next-button.next {
    right: 42px;
}

.flickity-button:hover {
    background: var(--primary-brand-dark);
}

.flickity-button-icon {
    fill: var(--white);
}

.avaliacao {
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 0.5em var(--pad-x);
    text-align: center;
    font-size: var(--fs-32);
}

.avaliacao h2 {
    font-size: var(--fs-32);
    color: var(--white);
}

.avaliacao p {
    margin-top: 6px;
    font-size: var(--fs-32);
    font-weight: 700;
}

.faq {
    margin-top: 71px;
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    padding: 55px 10vw;
    background: var(--sage-faq);
}

.faq h2 {
    margin-bottom: 36px;
}

.faq-item {
    padding-bottom: 1em;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    text-align: left;
}

.faq-q span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-q .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: 2px solid var(--primary-brand);
    border-radius: 50%;
    color: var(--primary-brand);
    font-size: 22px;
    transition: transform .2s;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.faq-a p {
    padding: 0 0 16px;
    font-size: 15px;
    color: var(--text-body);
}

.faq-item.open .faq-a {
    max-height: 600px;
    text-align: left;
}

.faq-cta {
    text-align: center;
    margin-top: 71px;

    .btn {
        border-radius: 2em;
    }
}

footer {
    padding: 46px var(--pad-x);
    color: #dfe7cf;
}

.footer-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer p {
    margin-bottom: 6px;
    font-size: var(--fs-14);
}

footer .strong {
    margin-top: 14px;
    font-weight: 700;
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.footer-bottom .footer-logo {
    flex: 0 0 50%;
}

.footer-bottom .socials {
    flex: 0 0 50%;
    justify-content: flex-end;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-logo img {
    display: block;
    height: 38px;
    width: auto;
}

.footer-logo .dot {
    color: var(--primary-brand);
}

.socials {
    display: flex;
    gap: 18px;
    font-size: 26px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
}

.socials a img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media(max-width:900px) {
    :root {
        --pad-x: 24px;
        --anchor-offset: 150px;
    }

    .nav,
    .hero-inner,
    .mob-inner,
    .apoio-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .lang-switcher {
        justify-content: center;
    }

    nav ul {
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .products,
    .comp-grid,
    .card-grid,
    .testi-inner,
    .two-col {
        grid-template-columns: 1fr;
    }

    .products>.caption.caption-diario,
    .products>.caption.caption-avancado {
        grid-column: 1 / -1;
    }

    .hero-img,
    .mob-img {
        width: 260px;
        height: 260px;
    }

    .cards {
        flex-direction: column;
    }

    .vet-carousel .carousel-cell,
    .client-carousel .carousel-cell {
        width: 84vw;
        min-width: 0;
    }

    .vet-carousel,
    .client-carousel {
        padding: 0 40px;
    }

    .vet-carousel .flickity-prev-next-button.previous,
    .client-carousel .flickity-prev-next-button.previous {
        left: 42px;
    }

    .vet-carousel .flickity-prev-next-button.next,
    .client-carousel .flickity-prev-next-button.next {
        right: 42px;
    }

    .testi-head h2 {
        text-align: center;
    }

    .video-box {
        height: 300px;
    }
}




table#posologia {
    font-size: 12px;
    border: 1px solid #72A340;
    border-radius: 2em;
    text-align: left;
    padding: 0.5em;
    width: 100%;
    max-width: 600px;
    margin: auto;

    tr.even {
        background-color: var(--sage-50);
    }

    td {
        border-right: 1px solid #72A340;
        text-align: right;
        padding-right: 0.5em;
    }

    td:last-child {
        border-right: none;
    }

    .peso {
        font-weight: 500;
        border-right: 1px solid #72A340;
        padding-right: 0.5em;
    }

    tr.last td {
        border-bottom: 1px solid #72A340;
    }

    .title,
    .header {
        font-size: 14px;
        text-align: center;
        font-weight: 700;



    }

    .header {
        font-size: 12px;

        td {
            text-align: center;
            border-top: 1px solid #72A340;
            border-bottom: 1px solid #72A340;
        }
    }

}

/* ── Desktop-only: hide mobile-exclusive elements ── */
.hamburger        { display: none; }
.mobile-form-cta  { display: none; }
.nav-lang-mobile  { display: none; }

/* Products watchCSS — Flickity inactive on desktop */
.products::after { content: ''; display: none; }

/* ═══════════════════════════════
   Mobile  ≤ 600 px
═══════════════════════════════ */
@media (max-width: 600px) {

    .nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 0;
    }

    .logo img { height: 32px; }

    .lang-switcher { display: none; }

    /* Hamburger button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        padding: 4px;
        background: none;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        z-index: 200;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: transform .22s ease, opacity .22s ease;
    }

    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav overlay */
    nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 150;
        background: var(--primary-brand-dark);
        padding: 72px var(--pad-x) 40px;
        overflow-y: auto;
    }

    nav.is-open { display: block; }

    nav ul {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        color: var(--white);
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    nav ul li a:hover { color: var(--sage-50); }

    .nav-lang-mobile {
        display: flex;
        gap: 2em;
        padding: 20px 0;
        margin-top: 8px;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-lang-mobile .lang-btn {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        color: var(--white);
    }

    .nav-lang-mobile .lang-btn.active {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary-brand-dark);
    }

    body.nav-open { overflow: hidden; }

    /* Hero */
    .hero { max-height: none; }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px var(--pad-x) 0;
        min-height: auto;
        gap: 20px;
        text-align: left;
    }

    .hero-text { max-width: 100%; }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .hero p { font-size: 18px; }

    .hero-img {
        width: 100%;
        height: 240px;
        justify-content: center;
    }

    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    /* Apoio */
    .apoio { margin: 0; background: var(--white); }

    .apoio-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px var(--pad-x);
        gap: 16px;
        text-align: left;
    }

    .joint-icon { display: none;}

    .apoio h2 { font-size: 22px; }
    .apoio p  { font-size: 16px; }

    /* Mobilidade */
    .mob-inner {
        flex-direction: column;
        align-items: flex-end;
        padding: 28px var(--pad-x) 0;
        gap: 16px;
        text-align: left;
    }

    .mob-text {
        max-width: 100%;
        font-size: 22px;
        text-align: right;
    }

    .mob-text .big { font-size: 32px; }

    .mob-img {
        width: 100%;
        height: 220px;
        margin-top: 0;
        justify-content: center;
    }

    .mob-img img {
        width: 100%;
        object-fit: cover;
    }

    /* Gama */
    .gama { padding: 28px var(--pad-x); }

    .gama h2 {
        font-size: var(--fs-28);
        margin-bottom: 20px;
    }

    /* Activate Flickity on products via watchCSS */
    .products::after { content: 'flickity'; }

    .products.flickity-enabled {
        display: block;
        padding: 0;
    }

    .products.flickity-enabled .product {
        width: 100%;
    }

    .products .flickity-prev-next-button.previous { left: -21px; }
    .products .flickity-prev-next-button.next     { right: -21px; }

    .product .box {
        height: auto;
        aspect-ratio: 303 / 330;
    }

    /* Form block */
    .form-block {
        margin: 0;
        padding: 28px var(--pad-x);
        text-align: center;
    }

    .form-block h2 {
        font-size: var(--fs-28);
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .form-block:not(.is-open) .sib-form { display: none !important; }
    .mobile-form-cta { display: inline-flex !important; }
    .form-block.is-open .mobile-form-cta { display: none !important; }

    /* Benefits / Quando usar */
    .two-col          { grid-template-columns: 1fr; }
    .benefits, .quando { padding: 28px var(--pad-x); }
    .two-col h2 {
        font-size: var(--fs-28);
        margin-bottom: 20px;
    }
    .list-item   { margin-bottom: 16px; }
    .list-item p { font-size: var(--fs-16); }

    /* Composição */
    .comp { padding: 28px var(--pad-x); }
    .comp h2 { font-size: var(--fs-28); }

    /* Single column with divider lines */
    .comp .comp-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comp-grid > div {
        padding: 20px 0;
    }

    .comp-grid > div:not(:last-child)::after {
        content: '';
        display: block;
        width: 30%;
        height: 1px;
        background: white;
        margin: 20px auto 0;
    }

    .comp-grid h3 { font-size: 18px; }
    .comp-grid p  { font-size: 16px; }

    /* Video */
    .video { padding: 20px 0; }

    /* Testemunhos */
    .testi { padding: 28px var(--pad-x); }

    .testi-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testi-head h2 {
        font-size: var(--fs-28);
        text-align: center;
    }

    .seal { display: none; }

    /* Fix: give carousels full width so Flickity viewport calculates correctly */
    .cards {
        align-items: stretch;
        width: 100%;
    }

    .vet-carousel,
    .client-carousel {
        width: 100%;
        padding: 0;
    }

    .vet-carousel .carousel-cell,
    .client-carousel .carousel-cell {
        width: 100%;
        min-width: 0;
    }

    .tcard {
        height: auto;
        aspect-ratio: 303 / 330;
    }

    .vet-carousel .flickity-prev-next-button.previous,
    .client-carousel .flickity-prev-next-button.previous { left: -21px; }

    .vet-carousel .flickity-prev-next-button.next,
    .client-carousel .flickity-prev-next-button.next     { right: -21px; }

    /* Avaliação */
    .avaliacao {
        margin: 0;
        padding: 14px var(--pad-x);
    }

    .avaliacao h2 { font-size: 22px; }
    .avaliacao p  { font-size: 22px; }

    /* FAQ */
    .faq {
        width: 100%;
        margin: 0;
        padding: 28px var(--pad-x);
    }

    .faq h2       { font-size: 22px; }
    .faq-q span   { font-size: 15px; }

    /* CTA */
    .cta       { padding: 0 var(--pad-x) 40px; }
    .faq-cta   { margin-top: 40px; }

    /* Footer */
    footer { margin-top: 0; padding: 28px var(--pad-x); }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.btn.open-brevo-modal{
    border-radius: 2em;
}