@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap");

:root {
    --primary-container: #C77D9C;
    --primary-hover: #C77D9C;
    --vet-contrast: #C77D9C;
    --vet-contrast-rgb: 76, 175, 129;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
}

.vet-brand {
    gap: 12px;
}

.vet-brand img {
    height: 40px;
}

.vet-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.vet-brand-copy strong {
    color: var(--vet-contrast);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.vet-brand-copy span {
    color: var(--primary-container);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.top-nav .btn-nav {
    background: #2d9e4e;
    color: #ffffff;
}

.vet-page {
    position: relative;
    overflow: hidden;
}

.vet-page::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: min(920px, 90vw);
    height: 420px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.08);
    filter: blur(68px);
    transform: translateX(-50%);
    pointer-events: none;
}

.vet-page > * {
    position: relative;
    z-index: 1;
}

.vet-hero,
.vet-section,
.vet-cta-section {
    padding: 88px 32px;
}

.vet-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 56px;
    padding-top: 36px;
    min-height: 760px;
}

.vet-hero-copy,
.vet-section-heading,
.vet-step,
.vet-flow-list,
.vet-cta-card {
    display: flex;
    flex-direction: column;
}

.vet-hero-copy {
    gap: 28px;
}

.vet-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px 16px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.09);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vet-eyebrow .material-symbols-outlined {
    font-size: 18px;
}

.vet-hero h1,
.vet-section-heading h2,
.vet-solution-card h3,
.vet-benefit-card h3,
.vet-step h3,
.vet-flow-item h4,
.vet-cta-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.vet-hero h1 {
    max-width: 760px;
    color: var(--primary);
    font-size: clamp(36px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    transition: transform 250ms ease, color 250ms ease, text-shadow 250ms ease;
}

.vet-hero h1:hover {
    transform: translateY(-3px);
    color: var(--vet-contrast);
    text-shadow: 0 18px 36px rgba(var(--vet-contrast-rgb), 0.18);
}

.vet-highlight {
    color: var(--vet-contrast);
    padding: 0 0.04em;
    border-radius: 8px;
    background: linear-gradient(180deg, transparent 58%, rgba(var(--vet-contrast-rgb), 0.14) 58%);
    transition: color 250ms ease, background 250ms ease;
}

.vet-hero h1:hover .vet-highlight {
    background: linear-gradient(180deg, transparent 42%, rgba(var(--vet-contrast-rgb), 0.28) 42%);
    color: var(--primary);
}

.vet-hero-lead {
    max-width: 680px;
    margin: 0;
    color: rgba(28, 27, 27, 0.74);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.7;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 8px;
    transition: transform 250ms ease, color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.vet-hero-lead:hover {
    transform: translateY(-2px);
    background: rgba(var(--vet-contrast-rgb), 0.1);
    box-shadow: 0 18px 38px -30px rgba(var(--vet-contrast-rgb), 0.38);
    color: var(--primary);
}

.vet-actions,
.vet-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vet-btn-primary,
.vet-btn-secondary,
.vet-cta-email,
.vet-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    font-size: 16px;
    font-weight: 800;
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.vet-btn-primary {
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.42);
    background: linear-gradient(135deg, var(--primary) 0%, #02873a 100%);
    color: var(--on-primary);
    box-shadow: 0 24px 48px -28px rgba(var(--vet-contrast-rgb), 0.52);
}

.vet-btn-primary .material-symbols-outlined {
    transition: transform 250ms ease;
}

.vet-btn-secondary {
    border: 1px solid rgba(0, 107, 44, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary);
}

.vet-contrast-icon {
    color: var(--vet-contrast);
}

.dental-brand-icon {
    font-size: 17px;
    font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
}

.vet-contrast-text {
    color: var(--vet-contrast);
}

.vet-btn-primary:hover,
.vet-btn-secondary:hover,
.vet-cta-email:hover,
.vet-cta-call:hover {
    transform: translateY(-2px);
}

.vet-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(0, 107, 44, 0.36);
    background: linear-gradient(135deg, var(--vet-contrast) 0%, rgba(var(--vet-contrast-rgb), 0.72) 100%);
    color: #063c34;
    box-shadow: 0 30px 58px -28px rgba(var(--vet-contrast-rgb), 0.68);
}

.vet-btn-primary:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.vet-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
}

.vet-summary-grid article,
.vet-solution-card,
.vet-flow-card {
    border: 1px solid rgba(0, 107, 44, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--editorial-shadow);
}

.vet-summary-grid article {
    padding: 20px;
    border-radius: 24px;
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.vet-summary-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--vet-contrast-rgb), 0.32);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(var(--vet-contrast-rgb), 0.1));
    box-shadow: 0 24px 52px -36px rgba(var(--vet-contrast-rgb), 0.34);
}

.vet-summary-grid h2 {
    margin: 0;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    transform-origin: left center;
    transition: transform 250ms ease, color 250ms ease;
}

.vet-summary-grid article:hover h2 {
    transform: scale(1.06);
    color: var(--vet-contrast);
}

.vet-summary-grid p,
.vet-solution-card p,
.vet-benefit-card p,
.vet-step p,
.vet-flow-item p,
.vet-flow-footnote,
.vet-cta-card p,
.vet-section-heading p {
    margin: 0;
    color: rgba(28, 27, 27, 0.72);
    line-height: 1.7;
}

.vet-summary-grid p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

.vet-hero-media {
    position: relative;
}

.vet-video-card {
    position: relative;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
    border-radius: 32px;
    background: var(--surface-container-low);
    box-shadow: 0 30px 70px -44px rgba(28, 27, 27, 0.46);
    transform-origin: center center;
    transition: transform 320ms ease, box-shadow 320ms ease;
}

.vet-hero-media:hover .vet-video-card {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 38px 82px -44px rgba(var(--vet-contrast-rgb), 0.42);
}

.vet-video-card video {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 520ms ease;
}

.vet-hero-media:hover .vet-video-card video {
    transform: scale(1.035);
}

.vet-video-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: min(360px, calc(100% - 48px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px -28px rgba(28, 27, 27, 0.42);
    backdrop-filter: blur(18px);
    transition: transform 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.vet-hero-media:hover .vet-video-note {
    transform: translateY(-3px);
    border-color: rgba(var(--vet-contrast-rgb), 0.34);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 48px -30px rgba(var(--vet-contrast-rgb), 0.4);
}

.vet-note-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--primary);
}

.vet-note-icon .material-symbols-outlined {
    color: var(--vet-contrast);
    font-size: 28px;
}

.vet-video-note p,
.vet-video-note span {
    margin: 0;
}

.vet-video-note p {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.vet-video-note .vet-contrast-text {
    color: #2f8f67;
}

.vet-video-note span {
    display: block;
    margin-top: 4px;
    color: rgba(28, 27, 27, 0.66);
    font-size: 12px;
    font-weight: 600;
}

.vet-note-progress {
    grid-column: 1 / -1;
    height: 8px;
    overflow: hidden;
    border-radius: 9999px;
    background: var(--surface-container-highest);
}

.vet-note-progress span {
    width: 82%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
    background: var(--primary-container);
}

.vet-question-badge {
    position: absolute;
    top: -32px;
    right: -28px;
    width: max-content;
    padding: 18px 24px;
    border-radius: 9999px;
    background: var(--primary-hover);
    color: var(--on-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(6deg);
    box-shadow: 0 22px 46px -28px rgba(0, 107, 44, 0.58);
    transition: transform 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.vet-hero-media:hover .vet-question-badge {
    transform: rotate(3deg) translateY(-4px) scale(1.04);
    background: var(--vet-contrast);
    box-shadow: 0 26px 52px -28px rgba(var(--vet-contrast-rgb), 0.62);
}

.vet-section-muted {
    background: var(--surface-container-low);
}

.vet-section-heading {
    gap: 16px;
    max-width: 820px;
    margin-bottom: 48px;
}

.vet-section-heading-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.vet-section-heading-wide {
    max-width: none;
}

.vet-section-heading h2 {
    color: var(--on-surface);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.02;
}

.vet-section-heading.vet-base-heading h2 {
    color: var(--primary);
}

.vet-section-heading p {
    font-size: 18px;
    font-weight: 600;
}

.vet-heading-parallel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: none;
    margin-bottom: clamp(32px, 4vw, 56px);
    padding: clamp(30px, 5vw, 58px) clamp(24px, 5vw, 72px);
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
    text-align: center;
    box-shadow: none;
    transform-origin: center center;
    transition: transform 300ms ease;
}

.vet-heading-parallel:hover {
    transform: translateY(-3px) scale(1.02);
}

.vet-heading-parallel::before {
    content: "";
    position: absolute;
    inset: -22px 50% -28px auto;
    width: min(100vw, 1280px);
    transform: translateX(50%);
    background:
        radial-gradient(ellipse at center, rgba(var(--vet-contrast-rgb), 0.16) 0%, rgba(0, 107, 44, 0.08) 44%, transparent 74%);
    pointer-events: none;
    transition: background 300ms ease, filter 300ms ease, transform 300ms ease;
}

.vet-heading-parallel:hover::before {
    transform: translateX(50%) scale(1.04);
    background:
        radial-gradient(ellipse at center, rgba(0, 107, 44, 0.12) 0%, rgba(var(--vet-contrast-rgb), 0.2) 44%, transparent 74%);
    filter: blur(2px);
}

.vet-heading-parallel > * {
    position: relative;
    z-index: 1;
}

.vet-heading-parallel h2 {
    max-width: 980px;
    color: var(--primary);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    transition: transform 280ms ease, color 280ms ease, text-shadow 280ms ease;
}

.vet-heading-parallel:hover h2 {
    transform: scale(1.03);
    color: var(--vet-contrast);
    text-shadow: 0 18px 36px rgba(var(--vet-contrast-rgb), 0.18);
}

.vet-heading-parallel .vet-strong-lead {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--vet-contrast);
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
    box-shadow: none;
    transition: transform 280ms ease, color 280ms ease;
}

.vet-heading-parallel:hover .vet-strong-lead {
    color: var(--primary);
}

.vet-heading-parallel:hover .vet-strong-lead:first-of-type {
    transform: translateY(-2px);
}

.vet-heading-parallel:hover .vet-strong-lead:last-of-type {
    transform: translateY(2px);
}

.vet-split-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
    padding: 36px;
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
}

.vet-split-heading h2 {
    max-width: none;
}

.titulo-izd h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.7;
}

.titulo-dcha {
    display: flex;
    justify-content: center;
    text-align: center;
}

.titulo-dcha h2 {
    color: var(--primary);
}

.vet-section-flex {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

.tarjeta {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 36px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--editorial-shadow);
    transform-origin: center center;
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.tarjeta:hover {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(var(--vet-contrast-rgb), 0.34);
    background: linear-gradient(145deg, #ffffff 0%, rgba(var(--vet-contrast-rgb), 0.08) 100%);
    box-shadow: 0 34px 72px -42px rgba(var(--vet-contrast-rgb), 0.42);
}

.tarjeta .foto {
    min-height: 360px;
    overflow: hidden;
    background: rgba(var(--vet-contrast-rgb), 0.1);
    transition: background 300ms ease;
}

.tarjeta:hover .foto {
    background: rgba(var(--vet-contrast-rgb), 0.16);
}

.tarjeta .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease, filter 300ms ease;
}

.tarjeta:hover .foto img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.02);
}

.tarjeta .texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 42px;
}

.tarjeta-foto-izquierda .texto {
    padding-left: 0;
}

.tarjeta-foto-derecha {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.tarjeta-foto-derecha .foto {
    order: 2;
}

.tarjeta-foto-derecha .texto {
    order: 1;
    padding-right: 0;
}

.tarjeta .titulo h3 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    transform-origin: left center;
    transition: transform 280ms ease, color 280ms ease, text-shadow 280ms ease;
}

.tarjeta:hover .titulo h3 {
    transform: translateY(-2px) scale(1.02);
    color: var(--vet-contrast);
    text-shadow: 0 16px 32px rgba(var(--vet-contrast-rgb), 0.16);
}

.tarjeta .lista {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tarjeta .lista li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: rgba(28, 27, 27, 0.74);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
    transition: color 250ms ease, transform 250ms ease;
}

.tarjeta:hover .lista li {
    color: rgba(28, 27, 27, 0.86);
    transform: translateX(2px);
}

.tarjeta .lista .material-symbols-outlined {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(var(--vet-contrast-rgb), 0.12);
    color: var(--vet-contrast);
    font-size: 20px;
    transition: transform 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.tarjeta:hover .lista .material-symbols-outlined {
    transform: scale(1.08);
    background: var(--vet-contrast);
    color: #063c34;
    box-shadow: 0 14px 28px -20px rgba(var(--vet-contrast-rgb), 0.56);
}

.vet-validation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.vet-validation-card {
    display: grid;
    grid-template-rows: 200px 1fr;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--editorial-shadow);
    transform-origin: center center;
    transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.vet-validation-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(var(--vet-contrast-rgb), 0.34);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(var(--vet-contrast-rgb), 0.08));
    box-shadow: 0 30px 64px -38px rgba(var(--vet-contrast-rgb), 0.38);
}

.icono-validation-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
    background: rgba(var(--vet-contrast-rgb), 0.1);
    transition: background 280ms ease;
}

.vet-validation-card:hover .icono-validation-card {
    background: rgba(var(--vet-contrast-rgb), 0.16);
}

.icono-validation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(var(--vet-contrast-rgb), 0.28);
    mix-blend-mode: color;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.vet-validation-card:hover .icono-validation-card::after {
    opacity: 0;
}

.icono-validation-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(0.92) brightness(1.04);
    transform-origin: center center;
    transition: transform 420ms ease, filter 320ms ease;
}

.vet-validation-card:hover .icono-validation-card img {
    filter: grayscale(0) contrast(1) brightness(1);
    transform: scale(1.06);
}

.texto-validation-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
}

.texto-validation-card h3,
.texto-validation-card p {
    margin: 0;
}

.texto-validation-card h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    transform-origin: left center;
    transition: transform 250ms ease, color 250ms ease;
}

.vet-validation-card:hover .texto-validation-card h3 {
    transform: scale(1.04);
    color: var(--vet-contrast);
}

.texto-validation-card p {
    color: rgba(28, 27, 27, 0.72);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    transition: color 250ms ease, transform 250ms ease;
}

.vet-validation-card:hover .texto-validation-card p {
    color: rgba(28, 27, 27, 0.84);
    transform: translateX(2px);
}

@media (hover: none), (pointer: coarse) {
    .vet-validation-card:hover {
        transform: none;
        border-color: rgba(0, 107, 44, 0.12);
        background: rgba(255, 255, 255, 0.86);
        box-shadow: var(--editorial-shadow);
    }

    .icono-validation-card::after,
    .vet-validation-card:hover .icono-validation-card::after {
        opacity: 0;
    }

    .icono-validation-card img,
    .vet-validation-card:hover .icono-validation-card img {
        filter: none;
        transform: none;
    }

    .vet-validation-card:hover .texto-validation-card h3 {
        transform: none;
        color: var(--primary);
    }

    .vet-validation-card:hover .texto-validation-card p {
        color: rgba(28, 27, 27, 0.72);
        transform: none;
    }
}

.vet-solution-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(72px, 8vw, 128px);
}

.vet-solution-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
    gap: clamp(4px, 0.8vw, 12px) clamp(18px, 2.6vw, 40px);
    align-items: start;
    min-height: 0;
    padding: clamp(18px, 2.4vw, 34px);
    border-color: transparent;
    border-radius: 40px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.vet-solution-card:hover {
    transform: none;
    box-shadow: none;
}

.card-grid {
    display: contents;
}

.solution-copy {
    display: flex;
    grid-column: 1;
    flex-direction: column;
    gap: clamp(14px, 1.6vw, 24px);
    align-self: start;
    max-width: 820px;
}

.card-title {
    display: flex;
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 620px;
}

.card-title::before {
    content: "Aunque no puedas atender en ese momento";
    display: inline-flex;
    grid-column: 1 / -1;
    grid-row: 1;
    width: fit-content;
    margin-bottom: 22px;
    color: var(--vet-contrast);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}


.card-title .vet-card-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    border-radius: 20px;
    box-shadow: 0 18px 40px -28px rgba(0, 107, 44, 0.52);
}

.card-title h3 {
    min-width: 0;
    max-width: 680px;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.subcard-left {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    gap: 10px;
    align-self: start;
    max-width: 820px;
}

.subcard-left > * {
    flex: 1 1 0;
}

.subcard-up,
.subcard-down,
.subcard-right {
    min-width: 0;
    padding: clamp(18px, 2.4vw, 30px) clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px);
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 26px 62px -46px rgba(28, 27, 27, 0.42);
    transform-origin: center center;
    transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.subcard-up:hover,
.subcard-down:hover,
.subcard-right:hover {
    transform: translateY(-3px) scale(1.015);
    border-color: rgba(var(--vet-contrast-rgb), 0.3);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(var(--vet-contrast-rgb), 0.08));
    box-shadow: 0 30px 66px -42px rgba(var(--vet-contrast-rgb), 0.36);
}

.subcard-up h4,
.subcard-down h4,
.subcard-right h4 {
    margin: 0;
    color: rgba(28, 27, 27, 0.82);
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.03em;
    transition: transform 250ms ease, color 250ms ease;
}

.subcard-up:hover h4,
.subcard-down:hover h4,
.subcard-right:hover h4 {
    transform: translateY(-2px);
    color: var(--primary);
}

.subcard-up h5,
.subcard-down h5,
.subcard-right h5 {
    display: inline-flex;
    width: fit-content;
    margin: 30px 0 0;
    padding: 0;
    border-radius: 9999px;
    background: transparent;
    color: var(--vet-contrast);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
    box-shadow: none;
    transition: transform 250ms ease, color 250ms ease;
}

.subcard-up:hover h5,
.subcard-down:hover h5,
.subcard-right:hover h5 {
    transform: translateX(4px);
    color: var(--primary);
}

.subcard-up ul,
.subcard-down ul,
.subcard-right ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding-left: 0;
    color: rgba(28, 27, 27, 0.68);
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 700;
    line-height: 1.6;
    list-style: none;
}

.subcard-up li,
.subcard-down li,
.subcard-right li {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.subcard-up li::before,
.subcard-down li::before,
.subcard-right li::before {
    content: none;
}

.subcard-up p,
.subcard-down p,
.subcard-right p {
    margin: 18px 0 0;
    color: rgba(28, 27, 27, 0.68);
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 650;
    line-height: 1.75;
    transition: color 250ms ease, transform 250ms ease;
}

.subcard-up:hover p,
.subcard-down:hover p,
.subcard-right:hover p {
    color: rgba(28, 27, 27, 0.82);
    transform: translateX(2px);
}

.subcard-right {
    grid-column: 1;
    grid-row: 3;
    min-height: 100%;
    max-width: 820px;
}

.subcard-right h4 {
    display: inline-flex;
    width: fit-content;
    padding: 0;
    border-radius: 9999px;
    color: var(--vet-contrast);
    font-size: clamp(15px, 1.2vw, 18px);
    letter-spacing: 0;
    background: transparent;
    box-shadow: none;
}

.subcard-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.mockups-grid {
    display: flex;
    grid-column: 2;
    grid-row: 1 / span 3;
    gap: 24px;
    align-items: center;
    align-self: center;
    justify-content: center;
    min-width: 0;
    min-height: min(720px, calc(100vh - 96px));
    padding: clamp(4px, 1vw, 12px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mockups-grid .subcard-whatsapp,
.mockups-grid .app-mockup-slide {
    align-items: stretch;
    min-width: 280px;
    padding: 0;
}

.mockups-carousel {
    position: relative;
}

.mockups-carousel .subcard-whatsapp,
.mockups-carousel .app-mockup-slide,
.mockups-carousel [data-carousel-slide] {
    display: none;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 22px;
}

.mockups-carousel .subcard-whatsapp.is-active,
.mockups-carousel .app-mockup-slide.is-active,
.mockups-carousel [data-carousel-slide].is-active {
    display: flex;
}

.mockup-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 107, 44, 0.16);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    box-shadow: 0 18px 38px -28px rgba(28, 27, 27, 0.48);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mockup-carousel-arrow:hover {
    background: var(--primary);
    color: var(--on-primary);
    transform: translateY(-50%) scale(1.04);
}

.mockup-carousel-arrow .material-symbols-outlined {
    font-size: 30px;
}

.mockup-carousel-prev {
    left: 22px;
}

.mockup-carousel-next {
    right: 22px;
}

.wa-phone {
    display: flex;
    flex-direction: column;
    width: min(100%, 430px);
    height: min(720px, calc(100vh - 96px));
    overflow: hidden;
    border: 8px solid #26312b;
    border-radius: 48px;
    background: #ffffff;
    box-shadow: 0 30px 70px -34px rgba(28, 27, 27, 0.62);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.wa-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 76px -34px rgba(28, 27, 27, 0.68);
}

.wa-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 8px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

.wa-status-icons,
.wa-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-battery {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 12px;
    padding: 1px;
    border: 2px solid #111111;
    border-radius: 4px;
}

.wa-battery::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -5px;
    width: 3px;
    height: 5px;
    border-radius: 1px;
    background: #111111;
}

.wa-battery span {
    width: 15px;
    height: 6px;
    border-radius: 2px;
    background: #111111;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.wa-back,
.wa-actions {
    color: #0b83ff;
}

.wa-back {
    font-size: 34px;
    line-height: 1;
}

.wa-avatar {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #6ac38f, #2e9d69);
    font-size: 20px;
    overflow: hidden;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.wa-contact {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.wa-contact strong {
    overflow: hidden;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-contact span {
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 600;
}

.wa-chat-area {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    min-height: 0;
    padding: 14px 10px 18px;
    background-color: #efeae2;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(0, 0, 0, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 70px 60px, rgba(0, 0, 0, 0.03) 1.8px, transparent 1.8px),
        radial-gradient(circle at 120px 40px, rgba(0, 0, 0, 0.02) 2px, transparent 2px);
    background-size: 180px 140px;
    overflow-y: auto;
    cursor: ns-resize;
}

.wa-chat-area::before {
    content: "Desliza";
    position: sticky;
    top: 10px;
    left: 10px;
    z-index: 1;
    align-self: flex-start;
    padding: 5px 9px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.88);
    color: rgba(28, 27, 27, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.wa-phone:hover .wa-chat-area::before {
    opacity: 1;
    transform: translateY(0);
}

.wa-day {
    width: fit-content;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 12px;
    background: #e8e8eb;
    color: #555555;
    font-size: 12px;
    font-weight: 700;
}

.wa-msg-row {
    display: flex;
    margin: 0;
}

.wa-incoming {
    justify-content: flex-start;
}

.wa-outgoing {
    justify-content: flex-end;
}

.wa-bubble {
    position: relative;
    max-width: 84%;
    padding: 10px 12px 20px;
    border-radius: 16px;
    color: #111111;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.wa-bubble-with-attachment {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}

.wa-bubble-text {
    display: block;
    padding-right: 12px;
    padding-left: 12px;
}

.wa-attachment {
    position: relative;
    width: calc(100% - 6px);
    margin: 3px 3px 8px;
    overflow: hidden;
    border-radius: 16px 6px 8px 8px;
    background: rgba(245, 245, 245, 0.42);
}

.wa-attachment img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px 6px 0 0;
    object-fit: cover;
}

.wa-video-play {
    z-index: 1;
}

.wa-file-description {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(245, 245, 245, 0.42);
}

.wa-file-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 38px;
    border-radius: 4px;
    background: #d6134f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.wa-file-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.wa-file-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-file-copy strong {
    color: #111111;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    max-height: 2.4em;
}

.wa-file-copy span {
    color: #667060;
    font-size: 11px;
    font-weight: 700;
}

.wa-incoming .wa-bubble {
    border-top-left-radius: 6px;
    background: #ffffff;
}

.wa-outgoing .wa-bubble {
    border-top-right-radius: 6px;
    background: #d9fdb8;
}

.wa-time {
    position: absolute;
    right: 10px;
    bottom: 5px;
    color: #7d8b7d;
    font-size: 10px;
}

.wa-ticks {
    color: #53a8ff;
    font-weight: 800;
    letter-spacing: -1px;
}

.wa-ticks-muted {
    color: #8a8a8a;
}

.wa-composer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 14px;
    background: #ffffff;
    color: #0b83ff;
    font-size: 22px;
}

.wa-composer div {
    flex: 1;
    height: 34px;
    border: 1px solid #dadada;
    border-radius: 9999px;
    background: #fafafa;
}

.app-phone {
    display: flex;
    flex-direction: column;
    width: min(100%, 430px);
    height: min(720px, calc(100vh - 96px));
    overflow: hidden;
    border: 8px solid #1c1b1b;
    border-radius: 48px;
    background: #fbfffd;
    box-shadow: 0 30px 70px -34px rgba(28, 27, 27, 0.62);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.app-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 76px -34px rgba(28, 27, 27, 0.68);
}

.vet-solution-card--tablet {
    grid-template-columns: minmax(0, 1fr);
}

.vet-solution-card--tablet .solution-copy {
    grid-column: 1;
    max-width: none;
}

.tablet-mockup {
    display: flex;
    grid-column: 1;
    width: 100%;
    min-width: 0;
    align-self: center;
    justify-content: center;
    padding-top: clamp(12px, 2vw, 28px);
}

.tablet-mockup-slide {
    display: flex;
    width: 100%;
    justify-content: center;
}

.app-tablet {
    display: flex;
    width: min(100%, 860px);
    max-height: min(620px, calc(100vh - 120px));
    aspect-ratio: 16 / 10;
    flex-direction: column;
    overflow: hidden;
    border: 8px solid #1c1b1b;
    border-radius: 32px;
    background: #fbfffd;
    box-shadow: 0 30px 70px -34px rgba(28, 27, 27, 0.62);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.app-tablet:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 76px -34px rgba(28, 27, 27, 0.68);
}

.app-tablet--video {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
}

.app-tablet:hover .app-workspace::before {
    opacity: 1;
    transform: translateY(0);
}

.app-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 8px;
    color: #111111;
    font-size: 14px;
    font-weight: 900;
}

.app-status-icons,
.app-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-battery {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 12px;
    padding: 1px;
    border: 2px solid #111111;
    border-radius: 4px;
}

.app-battery::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -5px;
    width: 3px;
    height: 5px;
    border-radius: 1px;
    background: #111111;
}

.app-battery span {
    width: 15px;
    height: 6px;
    border-radius: 2px;
    background: #111111;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 14px;
    border-bottom: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    background: linear-gradient(180deg, rgba(var(--vet-contrast-rgb), 0.16), rgba(var(--vet-contrast-rgb), 0.05));
}

.app-back {
    color: var(--vet-contrast);
    font-size: 34px;
    line-height: 1;
}

.app-avatar {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    overflow: hidden;
    border: 2px solid rgba(var(--vet-contrast-rgb), 0.28);
    border-radius: 14px;
    background: #ffffff;
}

.app-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.app-context {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.app-context strong {
    overflow: hidden;
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-context span {
    color: var(--vet-contrast);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-actions {
    color: var(--vet-contrast);
}

.app-actions .material-symbols-outlined {
    font-size: 21px;
}

.app-workspace {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 16px 14px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at 18% 0%, rgba(var(--vet-contrast-rgb), 0.14), transparent 34%),
        #f6fbf8;
    overflow-y: auto;
    cursor: ns-resize;
}

.app-workspace::before {
    content: "Desliza";
    position: sticky;
    top: 8px;
    left: 0;
    z-index: 1;
    align-self: flex-start;
    padding: 5px 9px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--vet-contrast);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.app-phone:hover .app-workspace::before {
    opacity: 1;
    transform: translateY(0);
}

.app-workspace--video {
    flex: 0 0 auto;
    gap: 0;
    overflow: hidden;
    padding: 12px;
    cursor: default;
}

.app-workspace--video::before {
    content: none;
}

.app-section-label {
    width: fit-content;
    margin: 0 auto;
    padding: 6px 12px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    color: rgba(28, 27, 27, 0.62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-section-notifications {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    align-self: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 9999px;
    background: rgba(242, 139, 130, 0.16);
    color: #F28B82;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-section-notifications .material-symbols-outlined {
    font-size: 16px;
}

.app-note {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 42px -36px rgba(28, 27, 27, 0.42);
}

.app-note-primary {
    border-left: 5px solid var(--vet-contrast);
}

.app-note-secondary {
    background: rgba(var(--vet-contrast-rgb), 0.1);
}

.app-note-label {
    color: var(--vet-contrast);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.app-note p {
    margin: 0;
    color: rgba(28, 27, 27, 0.78);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.app-note .app-note-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--vet-contrast);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.app-note-meta {
    color: rgba(28, 27, 27, 0.5);
    font-size: 10px;
    font-weight: 800;
}

.app-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(var(--vet-contrast-rgb), 0.14);
    background: #ffffff;
    color: var(--vet-contrast);
}

.app-toolbar div {
    flex: 1;
    min-width: 0;
    height: 34px;
    overflow: hidden;
    padding: 8px 12px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    border-radius: 9999px;
    background: rgba(var(--vet-contrast-rgb), 0.08);
    color: rgba(28, 27, 27, 0.58);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-toolbar .material-symbols-outlined {
    font-size: 22px;
}

.app-toolbar-action {
    justify-content: center;
    padding: 12px 14px;
}

.app-toolbar-action .app-toolbar-button {
    flex: 0 1 auto;
    width: fit-content;
    min-width: 0;
    height: auto;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    background: var(--vet-contrast);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-overflow: clip;
    white-space: normal;
}

.vet-solution-card-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.vet-solution-card-featured {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    background: var(--primary);
    color: var(--on-primary);
}

.vet-solution-card-featured p,
.vet-solution-card-featured h3 {
    color: var(--on-primary);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.card-title .vet-card-icon {
    flex: 0 0 56px;
    margin-bottom: 0;
}

.card-title h3 {
    min-width: 0;
}

.vet-card-icon {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--primary);
    color: var(--on-primary);
}

.vet-solution-card-featured .vet-card-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
}

.vet-card-symbol {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 40px;
}

.vet-solution-card h3 {
    color: var(--primary);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 800;
    line-height: 1.05;
}

.vet-solution-card p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
}

.vet-solution-card-large p {
    font-size: 18px;
}

.vet-solution-card-large img {
    width: 100%;
    height: 230px;
    border-radius: 24px;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 300ms ease;
}

.vet-solution-card-large:hover img {
    filter: grayscale(0);
}

.vet-solution-card-accent {
    background: rgba(0, 107, 44, 0.1);
}

.vet-solution-grid .vet-solution-card {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.vet-solution-grid .card-title {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    max-width: 820px;
    transform-origin: left center;
    transition: transform 300ms ease;
}

.vet-solution-grid .card-title:hover {
    transform: translateY(-3px) scale(1.02);
}

.vet-solution-grid .card-title::before {
    content: none;
}

.vet-solution-grid .card-title .card-eyebrow {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--vet-contrast);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
    transition: transform 260ms ease, color 260ms ease;
}

.vet-solution-grid .card-title:hover .card-eyebrow {
    transform: translateY(-1px);
    color: var(--primary);
}

.vet-solution-grid .card-title .card-eyebrow .vet-card-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 12px;
    background: rgba(var(--vet-contrast-rgb), 0.14);
    color: var(--vet-contrast);
    box-shadow: none;
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.vet-solution-grid .card-title:hover .card-eyebrow .vet-card-icon {
    transform: scale(1.08);
    background: var(--vet-contrast);
    color: #063c34;
    box-shadow: 0 14px 28px -20px rgba(var(--vet-contrast-rgb), 0.56);
}

.vet-solution-grid .card-title .card-eyebrow .material-symbols-outlined {
    font-size: 20px;
}

.vet-solution-grid .card-title h3 {
    grid-column: 1;
    grid-row: 2;
    max-width: 820px;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.06em;
    transition: transform 280ms ease, color 280ms ease, text-shadow 280ms ease;
}

.vet-solution-grid .card-title:hover h3 {
    transform: scale(1.015);
    color: var(--vet-contrast);
    text-shadow: 0 18px 36px rgba(var(--vet-contrast-rgb), 0.16);
}

.vet-solution-grid .card-title h4 {
    grid-column: 1;
    grid-row: 3;
    max-width: 820px;
    margin: 10px 0 0;
    color: var(--vet-contrast);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.05em;
    transition: transform 280ms ease, color 280ms ease;
}

.vet-solution-grid .card-title:hover h4 {
    transform: translateX(4px);
    color: var(--primary);
}

.vet-solution-grid .vet-solution-card h3 {
    max-width: 1120px;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.vet-solution-final {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
    padding: clamp(26px, 4vw, 56px);
    overflow: hidden;
    border: 1px solid rgba(0, 107, 44, 0.14);
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(var(--vet-contrast-rgb), 0.1) 100%),
        #ffffff;
    box-shadow: 0 34px 80px -54px rgba(28, 27, 27, 0.52);
}

.vet-solution-final::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.14);
    border-radius: 30px;
    pointer-events: none;
}

.final-title {
    position: relative;
    display: flex;
    grid-row: 1 / span 2;
    align-items: center;
    min-width: 0;
    transform-origin: left center;
    transition: transform 280ms ease;
}

.final-title:hover {
    transform: translateY(-3px) scale(1.02);
}

.final-title h3 {
    max-width: 680px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.06em;
    transition: color 280ms ease, text-shadow 280ms ease;
}

.final-title:hover h3 {
    color: var(--vet-contrast);
    text-shadow: 0 18px 36px rgba(var(--vet-contrast-rgb), 0.16);
}

.final-card,
.remate {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 54px -44px rgba(28, 27, 27, 0.5);
}

.final-card {
    display: flex;
    grid-column: 2;
    flex-direction: column;
    gap: 18px;
    padding: clamp(22px, 3vw, 34px);
    transform-origin: center center;
    transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.final-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(var(--vet-contrast-rgb), 0.32);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(var(--vet-contrast-rgb), 0.1));
    box-shadow: 0 30px 64px -42px rgba(var(--vet-contrast-rgb), 0.38);
}

.final-card p,
.remate p {
    margin: 0;
}

.final-card p {
    color: rgba(28, 27, 27, 0.72);
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 700;
    line-height: 1.65;
    transition: color 250ms ease, transform 250ms ease;
}

.final-card:hover p {
    color: rgba(28, 27, 27, 0.84);
    transform: translateX(2px);
}

.final-card p:first-child {
    color: rgba(28, 27, 27, 0.86);
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 850;
    line-height: 1.38;
    letter-spacing: -0.03em;
    transition: color 250ms ease, transform 250ms ease;
}

.final-card:hover p:first-child {
    color: var(--primary);
    transform: translateY(-2px);
}

.final-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.final-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(28, 27, 27, 0.74);
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 800;
    line-height: 1.45;
    transition: color 250ms ease, transform 250ms ease;
}

.final-card:hover li {
    color: rgba(28, 27, 27, 0.88);
    transform: translateX(4px);
}

.final-card li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: var(--vet-contrast);
    box-shadow: 0 0 0 6px rgba(var(--vet-contrast-rgb), 0.12);
    transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.final-card:hover li::before {
    transform: scale(1.18);
    background: var(--primary);
    box-shadow: 0 0 0 7px rgba(var(--vet-contrast-rgb), 0.16);
}

.remate {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    padding: clamp(22px, 3vw, 36px);
    background: var(--vet-contrast);
    color: var(--on-primary);
    text-align: center;
    transform-origin: center center;
    transition: transform 340ms ease, box-shadow 340ms ease;
}

.remate:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 42px 88px -36px rgba(var(--vet-contrast-rgb), 0.62);
}

.remate p {
    color: inherit;
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
    transition: transform 300ms ease, text-shadow 300ms ease;
}

.remate:hover p {
    text-shadow: 0 16px 32px rgba(0, 107, 44, 0.22);
}

.remate:hover p:first-child {
    transform: translateY(-2px) scale(1.02);
}

.remate:hover p:last-child {
    transform: translateY(2px) scale(1.02);
}

.remate p:last-child {
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
}



.vet-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.vet-benefit-card {
    transform-origin: center center;
    text-align: center;
    transition: transform 280ms ease;
}

.vet-benefit-card:hover {
    transform: translateY(-3px);
}

.vet-benefit-media {
    position: relative;
    aspect-ratio: 1;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--editorial-shadow);
}

.vet-benefit-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 107, 44, 0.14);
    transition: opacity 250ms ease;
}

.vet-benefit-card:hover .vet-benefit-media::after {
    opacity: 0;
}

.vet-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.vet-benefit-card:hover img {
    transform: scale(1.05);
}

.vet-benefit-card h3 {
    color: var(--primary);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 250ms ease, color 250ms ease;
}

.vet-benefit-card:hover h3 {
    transform: translateY(-2px) scale(1.03);
    color: var(--vet-contrast);
}

.vet-benefit-card p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 250ms ease, color 250ms ease;
}

.vet-benefit-card:hover p:not(.clave) {
    transform: translateY(-1px);
    color: rgba(28, 27, 27, 0.84);
}

.vet-benefit-card .clave {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    padding: 12px 16px;
    border: 1px solid rgba(var(--vet-contrast-rgb), 0.18);
    border-radius: 8px;
    background: rgba(var(--vet-contrast-rgb), 0.1);
    color: var(--vet-contrast);
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: 0;
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.vet-benefit-card:hover .clave {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(var(--vet-contrast-rgb), 0.36);
    background: var(--vet-contrast);
    color: #063c34;
    box-shadow: 0 18px 36px -26px rgba(var(--vet-contrast-rgb), 0.48);
}

.vet-process-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 40px;
}

.vet-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 30px;
}

.vet-step {
    flex-direction: row;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 52px -44px rgba(28, 27, 27, 0.42);
    transform-origin: center center;
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.vet-step:hover {
    transform: translateY(-3px) scale(1.015);
    border-color: rgba(var(--vet-contrast-rgb), 0.32);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(var(--vet-contrast-rgb), 0.08));
    box-shadow: 0 28px 60px -42px rgba(var(--vet-contrast-rgb), 0.36);
}

.vet-step > span {
    display: flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    color: var(--on-primary);
    font-size: 20px;
    font-weight: 800;
    transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.vet-step:hover > span {
    transform: scale(1.08);
    background: var(--vet-contrast);
    color: #063c34;
    box-shadow: 0 16px 32px -22px rgba(var(--vet-contrast-rgb), 0.58);
}

.vet-step h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    transition: transform 250ms ease, color 250ms ease;
}

.vet-step:hover h3 {
    transform: translateY(-1px);
    color: var(--vet-contrast);
}

.vet-step p {
    margin-top: 8px;
    font-weight: 600;
    transition: color 250ms ease, transform 250ms ease;
}

.vet-step:hover p {
    color: rgba(28, 27, 27, 0.84);
    transform: translateX(2px);
}

.vet-flow-card {
    padding: 32px;
    border-radius: 32px;
}

.vet-flow-list {
    gap: 0;
}

.vet-flow-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 24px;
    background: var(--surface-container-lowest);
}

.vet-flow-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--surface-container-highest);
    color: var(--primary);
}

.vet-flow-item h4 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
}

.vet-flow-item p {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
}

.vet-flow-label {
    padding: 6px 10px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.08);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vet-flow-blue {
    border-color: rgba(var(--vet-contrast-rgb), 0.2);
    background: rgba(0, 107, 44, 0.06);
}

.vet-flow-blue .vet-flow-icon,
.vet-flow-green .vet-flow-icon,
.vet-flow-result .vet-flow-icon {
    background: var(--primary);
    color: var(--on-primary);
}

.vet-flow-green {
    background: rgba(var(--vet-contrast-rgb), 0.08);
}

.vet-flow-result {
    background: rgba(0, 107, 44, 0.1);
}

.vet-flow-result .vet-flow-label {
    background: var(--primary);
    color: var(--on-primary);
}

.vet-flow-connector {
    width: 2px;
    height: 16px;
    margin: 0 auto;
    border-left: 2px dashed rgba(0, 107, 44, 0.22);
}

.vet-flow-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.vet-flow-footnote .material-symbols-outlined {
    color: var(--primary);
}

.vet-cta-section {
    padding-bottom: 104px;
}

.vet-cta-card {
    position: relative;
    align-items: center;
    gap: 24px;
    padding: 52px;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    color: var(--on-primary);
    text-align: center;
    box-shadow: 0 32px 72px -32px rgba(0, 107, 44, 0.38);
    transform-origin: center center;
    transition: transform 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.vet-cta-card:hover {
    transform: translateY(-4px) scale(1.025);
    background: linear-gradient(135deg, var(--primary) 0%, var(--vet-contrast) 100%);
    box-shadow: 0 42px 88px -36px rgba(var(--vet-contrast-rgb), 0.5);
}

.vet-cta-card h2 {
    max-width: 880px;
    color: var(--on-primary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    transition: transform 280ms ease, text-shadow 280ms ease;
}

.vet-cta-card:hover h2 {
    transform: translateY(-2px) scale(1.02);
    text-shadow: 0 18px 36px rgba(0, 107, 44, 0.26);
}

.vet-cta-card p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    font-weight: 600;
    transition: transform 280ms ease, color 280ms ease;
}

.vet-cta-card:hover p {
    color: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
}

.vet-cta-actions {
    justify-content: center;
}

.vet-cta-email {
    background: var(--on-primary);
    color: var(--primary);
}

.vet-cta-card:hover .vet-cta-email {
    transform: scale(1.05);
    background: #ffffff;
    color: #063c34;
    box-shadow: 0 24px 48px -24px rgba(0, 107, 44, 0.42);
}

.vet-cta-call {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: var(--on-primary);
}

.video_rep {
    display: block;
    width: 100%;
}

.video-embed {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
}

.video-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--vet-contrast);
    transform: translate(-50%, -50%);
}

.video-thumbnail > span:not(.video-play) {
    position: absolute;
    top: calc(50% + 48px);
    left: 50%;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}


@media (max-width: 1023px) {
    .vet-hero,
    .vet-process-layout {
        grid-template-columns: 1fr;
    }

    .vet-hero {
        min-height: auto;
        padding-top: 24px;
    }

    .vet-video-card {
        max-width: 560px;
        margin-right: auto;
    }

    .vet-validation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vet-heading-parallel {
        padding: 34px 28px;
    }

    .vet-heading-parallel .vet-strong-lead {
        max-width: 680px;
    }

    .tarjeta {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tarjeta-foto-derecha .foto {
        order: 1;
    }

    .tarjeta-foto-derecha .texto {
        order: 2;
    }

    .tarjeta .foto {
        min-height: 320px;
    }

    .tarjeta .texto,
    .tarjeta-foto-izquierda .texto,
    .tarjeta-foto-derecha .texto {
        padding: 34px;
    }

    .vet-solution-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .vet-solution-grid .card-title,
    .subcard-left,
    .subcard-right,
    .mockups-grid {
        grid-column: 1;
        grid-row: auto;
    }


    .mockups-carousel {
        min-height: 0;
    }

    .vet-benefits-grid {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .vet-hero,
    .vet-section,
    .vet-cta-section {
        padding: 64px 24px;
    }

    .vet-hero {
        padding-top: 16px;
        gap: 40px;
    }

    .vet-eyebrow {
        align-items: flex-start;
        line-height: 1.5;
    }

    .vet-summary-grid,
    .vet-validation-grid,
    .vet-steps,
    .vet-benefits-grid {
        grid-template-columns: 1fr;
    }

    .vet-steps {
        grid-template-rows: none;
        grid-auto-flow: row;
    }

    .vet-validation-card {
        grid-template-rows: 220px 1fr;
        min-height: 0;
    }

    .vet-heading-parallel {
        gap: 12px;
        padding: 30px 18px;
    }

    .vet-heading-parallel .vet-strong-lead {
        padding-top: 12px;
    }

    .subcard-left {
        min-height: 0;
    }

    .subcard-right {
        min-height: 0;
    }

    .vet-solution-final {
        grid-template-columns: 1fr;
    }

    .final-title,
    .final-card,
    .remate {
        grid-column: 1;
        grid-row: auto;
    }

    .mockups-grid {
        width: 100%;
        min-height: 0;
        padding: 12px 0 0;
        border-radius: 0;
    }

    .tablet-mockup {
        padding-top: 12px;
    }

    .app-tablet {
        width: min(100%, 720px);
        max-height: none;
        border-width: 6px;
        border-radius: 28px;
    }

    .mockups-carousel {
        min-height: clamp(460px, 116vw, 560px);
    }

    .mockups-carousel .subcard-whatsapp,
    .mockups-carousel .app-mockup-slide,
    .mockups-carousel [data-carousel-slide] {
        min-width: 0;
        padding: 0 42px;
    }

    .mockup-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .mockup-carousel-prev {
        left: 2px;
    }

    .mockup-carousel-next {
        right: 2px;
    }

    .wa-phone,
    .app-phone {
        width: min(100%, 300px);
        height: clamp(460px, 116vw, 560px);
        border-width: 6px;
        border-radius: 36px;
    }

    .wa-status-bar,
    .app-status-bar {
        padding: 10px 14px 6px;
        font-size: 12px;
    }

    .wa-header,
    .app-header {
        gap: 8px;
        padding: 6px 10px 9px;
    }

    .wa-back,
    .app-back {
        font-size: 28px;
    }

    .wa-avatar,
    .app-avatar {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .wa-contact strong,
    .app-context strong {
        font-size: 12px;
    }

    .wa-contact span,
    .app-context span {
        font-size: 10px;
    }

    .wa-actions,
    .app-actions {
        gap: 5px;
    }

    .wa-chat-area,
    .app-workspace {
        gap: 6px;
        padding: 10px 8px 12px;
    }

    .wa-day,
    .app-section-label {
        padding: 4px 10px;
        font-size: 10px;
    }

    .wa-bubble {
        max-width: 88%;
        padding: 8px 9px 18px;
        border-radius: 13px;
        font-size: 11px;
        line-height: 1.32;
    }

    .wa-composer {
        gap: 8px;
        padding: 9px 10px 10px;
        font-size: 18px;
    }

    .wa-composer div {
        height: 28px;
    }

    .app-note {
        gap: 5px;
        padding: 10px;
        border-radius: 13px;
    }

    .app-note p {
        font-size: 11px;
        line-height: 1.34;
    }

    .app-note-label {
        font-size: 9px;
    }

    .app-note-meta {
        font-size: 9px;
    }

    .app-toolbar {
        gap: 8px;
        padding: 9px 10px 10px;
    }

    .app-toolbar div {
        height: 28px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .app-toolbar .material-symbols-outlined {
        font-size: 18px;
    }

    .app-toolbar-action .app-toolbar-button {
        height: auto;
        padding: 9px 14px;
        font-size: 11px;
    }

    .tarjeta .foto {
        min-height: 260px;
    }

    .tarjeta .texto,
    .tarjeta-foto-izquierda .texto,
    .tarjeta-foto-derecha .texto {
        padding: 28px;
    }

    .tarjeta .lista li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
    }

    .tarjeta .lista .material-symbols-outlined {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .vet-solution-card-featured {
        flex-direction: column;
        align-items: flex-start;
    }

    .vet-question-badge {
        right: 12px;
        top: -24px;
        padding: 14px 18px;
        font-size: 10px;
    }

    .vet-flow-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .vet-flow-label {
        grid-column: 2;
        width: fit-content;
    }

    .vet-cta-card {
        padding: 36px 24px;
        border-radius: 28px;
    }
}

@media (max-width: 520px) {
    .vet-actions,
    .vet-cta-actions {
        flex-direction: column;
    }

    .vet-btn-primary,
    .vet-btn-secondary,
    .vet-cta-email,
    .vet-cta-call {
        justify-content: center;
        width: 100%;
    }

    .vet-video-note {
        position: static;
        width: auto;
        margin: 12px;
    }

    .vet-solution-grid {
        gap: 40px;
    }

    .vet-solution-card {
        padding: 24px 18px;
        border-radius: 28px;
    }

    .vet-solution-final {
        padding: 24px 18px;
        border-radius: 28px;
    }

    .vet-solution-final::before {
        inset: 10px;
        border-radius: 22px;
    }

    .vet-solution-grid .card-title h3,
    .vet-solution-grid .vet-solution-card h3,
    .final-title h3 {
        font-size: clamp(30px, 10vw, 42px);
        letter-spacing: -0.05em;
    }

    .final-card,
    .remate {
        border-radius: 22px;
    }

    .vet-solution-grid .card-title h4 {
        font-size: clamp(24px, 8vw, 34px);
        letter-spacing: -0.04em;
    }

    .card-title {
        align-items: flex-start;
    }

    .card-title .vet-card-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .mockups-carousel {
        min-height: clamp(430px, 122vw, 520px);
    }

    .mockups-carousel .subcard-whatsapp,
    .mockups-carousel .app-mockup-slide,
    .mockups-carousel [data-carousel-slide] {
        padding: 0 34px;
    }

    .wa-phone,
    .app-phone {
        width: min(100%, 284px);
        height: clamp(430px, 122vw, 520px);
    }

    .app-tablet {
        aspect-ratio: 1 / 1.16;
        border-radius: 24px;
    }

}
