/* v1.25.1 — layout mockup-inspired (navy / gold / green), marca actual */
:root {
    --v25-navy: #0f2744;
    --v25-navy-2: #1a3a5c;
    --v25-gold: #c9a227;
    --v25-gold-soft: #e8d5a3;
    --v25-green: #1e4d3b;
    --v25-cream: #f6f1e7;
    /* Tokens unificados (antes con fallback inline en vender.html) */
    --text-dark: #1a1a1a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --bg-light: #fafaf9;
    --primary-color: var(--v25-gold);
    --success-color: #10b981;
    --spacing-md: 20px;
    --spacing-lg: 80px;
    /* Breakpoints (referencia) */
    --bp-sm: 640px;
    --bp-md: 768px;
    --bp-lg: 1024px;
}

.v25-hero {
    position: relative;
    /* Toda la altura de ventana (dvh/svh) con respaldo; encaja con header fijo + safe areas */
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: max(6.35rem, calc(env(safe-area-inset-top, 0px) + 5.35rem));
    padding-bottom: max(3rem, calc(env(safe-area-inset-bottom, 0px) + 2rem));
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    box-sizing: border-box;
    /* Corta el degrade + scale del .v25-hero-bg; si overflow:visible sangra sobre la franja siguiente */
    overflow: hidden;
    isolation: isolate;
}

.v25-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 39, 68, 0.92), rgba(15, 39, 68, 0.75)),
        url('hero/casa moderna exterior.webp') center/cover no-repeat;
    z-index: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.v25-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.v25-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v25-gold-soft);
    margin-top: 0.35rem;
    margin-bottom: 1rem;
}

.v25-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v25-gold);
}

.v25-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.v25-hero-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 38rem;
    overflow-wrap: anywhere;
}

.v25-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.75rem 0 1rem;
}

.v25-btn-primary {
    background: var(--v25-navy-2) !important;
    border-color: var(--v25-navy-2) !important;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--v25-navy);
}

.v25-hero-micro {
    font-size: 0.9rem;
    opacity: 0.9;
}

.v25-hero-micro a {
    color: var(--v25-gold-soft);
    text-decoration: underline;
}

.v25-section {
    padding: clamp(2.25rem, 5.5vw, 4rem) 0;
}

.v25-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--v25-navy);
    margin: 0 0 0.75rem;
}

.v25-lead {
    max-width: 48rem;
    color: #444;
    line-height: 1.65;
    margin: 0 0 2rem;
}

.v25-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.v25-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 39, 68, 0.06);
}

.v25-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--v25-navy);
}

.v25-card p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.55;
}

.v25-cta-row {
    text-align: center;
}

.v25-diff {
    background: var(--v25-cream);
    position: relative;
}

/* Transición suave respecto a la franja de autoridad (evita corte duro) */
.v25-diff::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 39, 68, 0.07) 20%, rgba(15, 39, 68, 0.07) 80%, transparent);
    pointer-events: none;
}

.v25-diff .v25-eyebrow,
.v25-diff .v25-h2 {
    text-align: center;
}

.v25-diff .v25-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.v25-diff .v25-cols-3 {
    counter-reset: v25-diff-card;
    gap: clamp(1.25rem, 3vw, 1.85rem);
    margin-top: 0.35rem;
    margin-bottom: 2.25rem;
}

.v25-diff .v25-card {
    position: relative;
    counter-increment: v25-diff-card;
    padding: 1.65rem 1.45rem 1.5rem;
    border: 1px solid rgba(15, 39, 68, 0.1);
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #fdfbf7 55%, #faf7f0 100%);
    box-shadow: 0 10px 32px rgba(15, 39, 68, 0.07),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    overflow: hidden;
}

.v25-diff .v25-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--v25-navy-2) 0%, var(--v25-navy) 35%, var(--v25-gold) 100%);
    opacity: 0.95;
}

.v25-diff .v25-card::after {
    content: counter(v25-diff-card, decimal-leading-zero);
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--v25-gold);
    opacity: 0.55;
    line-height: 1;
}

.v25-diff .v25-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 2.1vw, 1.28rem);
    line-height: 1.25;
    padding-right: 2rem;
    margin-bottom: 0.65rem;
}

.v25-diff .v25-card p {
    color: #4a5568;
    line-height: 1.62;
}

.v25-actions {
    background: #fff;
}

.v25-two-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.v25-big-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    padding: 2rem;
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid #e0dcd4;
    transition: transform 0.2s, box-shadow 0.2s;
}

.v25-big-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 39, 68, 0.12);
}

.v25-big-card--buy {
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)), url('img/AdobeStock_524398486.webp');
}

.v25-big-card--sell {
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)), url('img/AdobeStock_312242696.webp');
}

.v25-big-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--v25-navy);
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
}

.v25-big-card p {
    color: #444;
    line-height: 1.55;
}

.v25-bullets {
    margin: 1rem 0 1.5rem;
    padding-left: 1.1rem;
    color: #333;
    font-size: 0.92rem;
}

.v25-bullets--checks {
    list-style: none;
    padding-left: 0;
}

.v25-bullets--checks li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.v25-bullets--checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--v25-green);
    font-weight: 700;
}

.v25-big-card-btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    background: var(--v25-navy);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.v25-big-card-btn--green {
    background: var(--v25-green);
}

.v25-coverage {
    background: #fafafa;
}

.v25-region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.v25-region {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #e8e4dc;
}

.v25-region h4 {
    margin: 0 0 0.35rem;
    color: var(--v25-navy);
    font-size: 1rem;
}

.v25-region--soon {
    border-style: dashed;
    opacity: 0.95;
}

.v25-region--img {
    position: relative;
    background-image: var(--region-img);
    background-size: cover;
    background-position: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: none;
    padding: 0;
    border-radius: 18px;
    box-shadow:
        0 4px 6px rgba(10, 37, 64, 0.06),
        0 14px 38px rgba(10, 37, 64, 0.14);
    transform: translateZ(0);
    transition:
        transform var(--transition-smooth, 0.4s cubic-bezier(0.4, 0, 0.2, 1)),
        box-shadow var(--transition-smooth, 0.4s cubic-bezier(0.4, 0, 0.2, 1));
}

.v25-region--img::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(196, 30, 58, 0.35) 0%, transparent 55%);
    pointer-events: none;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.v25-region--img:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 10px 22px rgba(10, 37, 64, 0.12),
        0 26px 52px rgba(10, 37, 64, 0.2);
}

.v25-region--img:hover::after {
    opacity: 1;
}

.v25-region--img:focus-visible {
    outline: 3px solid rgba(45, 156, 219, 0.65);
    outline-offset: 3px;
}

.v25-region--img.v25-region--soon {
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.v25-region--img.v25-region--soon:hover {
    transform: translateY(-4px);
}

.v25-region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(6, 22, 42, 0.15) 0%,
        rgba(10, 37, 64, 0.25) 40%,
        rgba(10, 37, 64, 0.78) 72%,
        rgba(6, 14, 28, 0.96) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.v25-region-body {
    position: relative;
    z-index: 1;
    padding: 1.35rem 1.45rem 1.45rem;
}

.v25-region--img h4 {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.v25-region--img p {
    font-size: 0.88rem;
    line-height: 1.45;
    opacity: 0.96;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v25-region--img h4,
.v25-region--img p {
    color: #fff;
    margin: 0 0 0.5rem;
}

.v25-region--img p:last-of-type {
    margin-bottom: 0.85rem;
}

.v25-region-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-shadow: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.v25-region--img:hover .v25-region-cta {
    background: rgba(196, 30, 58, 0.92);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(2px);
}

.v25-region-cta svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.v25-region--soon .v25-region-cta {
    opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
    .v25-region--img,
    .v25-region--img::after {
        transition: none;
    }

    .v25-region--img:hover {
        transform: none;
    }
}

.v25-inventory-notice {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-left: 3px solid #adb5bd;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
}

.v25-inventory-notice p {
    margin: 0;
}

.filter-field--with-op-kind .operation-kind-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.35rem 0 0.5rem;
}

.op-kind-btn {
    flex: 1 1 auto;
    min-width: 4.5rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 6px;
    background: #fff;
    color: var(--text-dark, #1a1a1a);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.op-kind-btn:hover:not(:disabled) {
    border-color: var(--v25-gold, #c9a227);
    color: var(--v25-navy, #0f2744);
}

.op-kind-btn.is-active {
    background: var(--v25-navy, #0f2744);
    border-color: var(--v25-navy, #0f2744);
    color: #fff;
}

.op-kind-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.filter-field--with-op-kind .operation-kind-select {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.v25-diag-contact-section {
    padding-top: var(--spacing-md, 20px);
    padding-bottom: var(--spacing-lg, 80px);
}

.v25-nom {
    background: linear-gradient(135deg, var(--v25-navy), var(--v25-navy-2));
    color: #fff;
}

.v25-nom .v25-h2,
.v25-nom .v25-lead,
.v25-nom .v25-bullets {
    color: #f0f4f8;
}

.v25-nom .v25-lead {
    opacity: 0.95;
}

.v25-nom-inner {
    max-width: 720px;
}

/* Eyebrow (mockup-style gold label) */
.v25-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v25-gold);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.v25-eyebrow--on-dark {
    color: var(--v25-gold-soft);
}

/* Franja de valor bajo el hero: tarjetas ligeras + acento dorado (marca) */
.v25-hero-strip {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #ebe6de 0%, var(--v25-cream) 45%, #e8e2d8 100%);
    border-top: 1px solid rgba(15, 39, 68, 0.06);
    border-bottom: 1px solid rgba(201, 162, 39, 0.28);
    padding: clamp(1.1rem, 3vw, 1.5rem) 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Franja pegada al fold: sin depender del IO de .reveal (contraste garantizado sobre fondo claro). */
.v25-hero-strip .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: none;
    will-change: auto;
}

.v25-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.25rem);
    align-items: stretch;
    text-align: center;
    font-size: 0.9rem;
    color: var(--v25-navy);
}

@media (max-width: 700px) {
    .v25-strip-inner {
        grid-template-columns: 1fr;
    }
}

.v25-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.1rem 0.85rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 22px rgba(15, 39, 68, 0.06),
        0 0 0 1px rgba(15, 39, 68, 0.04) inset;
    transition: transform var(--t-med, 240ms) var(--ease-out, ease),
        box-shadow var(--t-med, 240ms) var(--ease-out, ease),
        border-color var(--t-med, 240ms) var(--ease-out, ease),
        background-color var(--t-med, 240ms) var(--ease-out, ease);
}

.v25-strip-item::before {
    content: "";
    width: 2.5rem;
    height: 3px;
    margin-bottom: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, var(--v25-gold) 40%, var(--v25-gold-soft) 60%, transparent 100%);
    flex-shrink: 0;
}

@media (hover: hover) {
    .v25-strip-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(201, 162, 39, 0.35);
        box-shadow: 0 12px 28px rgba(15, 39, 68, 0.1),
            0 0 0 1px rgba(201, 162, 39, 0.12) inset;
    }
}

.v25-strip-item strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.4rem;
    color: var(--v25-navy);
    letter-spacing: -0.02em;
}

.v25-strip-item .v25-counter {
    color: var(--v25-navy-2);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    padding: 0.08em 0.28em 0.06em;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

/* NOM: split layout + CTA card (mockup 4) */
.v25-nom-split {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: 2rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .v25-nom-split {
        grid-template-columns: 1fr;
    }
}

.v25-nom-main .btn {
    margin-top: 1rem;
}

.v25-nom-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--v25-gold);
}

.v25-nom-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--v25-navy);
    margin: 0 0 0.75rem;
}

.v25-nom-card p {
    margin: 0 0 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Diagnóstico v2 */
.v25-diag-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    line-height: 1.2;
    color: var(--v25-navy);
    margin: 0 0 1rem;
}

.v25-diag-lead {
    color: #444;
    margin-bottom: 1rem;
}

.v25-diag-duration {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: var(--v25-gold-soft);
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    margin-top: 1rem;
}

.v25-diag-duration-icon {
    color: var(--v25-navy);
    flex-shrink: 0;
}

.v25-diag-form-wrap {
    position: relative;
    box-shadow: 0 12px 40px rgba(15, 39, 68, 0.12);
    border-radius: 16px;
    border: 1px solid #e8e4dc;
    overflow: hidden;
    background: #fff;
}

.v25-diag-form-ribbon {
    background: var(--v25-green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.55rem 1rem;
    border-radius: 16px 16px 0 0;
}

.v25-diag-form-card {
    border-radius: 0 0 16px 16px;
    padding: 0;
    overflow: hidden;
}

.v25-diag-form-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.v25-diag-what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.v25-testimonial-section .v25-lead {
    margin-bottom: 1.5rem;
}

.v25-testimonial-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e8e4dc;
    align-items: flex-start;
}

.v25-testimonial-photo-wrap {
    flex-shrink: 0;
}

.v25-testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--v25-gold-soft);
}

.v25-testimonial-quote {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.v25-testimonial-meta {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v25-navy);
}

.v25-testimonial-cite {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #777;
    font-style: normal;
}

.v25-faq-split {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 800px) {
    .v25-faq-split {
        grid-template-columns: 1fr;
    }
}

.v25-faq-intro .v25-lead {
    margin-bottom: 0;
}

.v25-diag-bottom-cta {
    background: var(--v25-green);
    padding: 2.5rem 1rem;
}

.v25-diag-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.v25-diag-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--v25-gold) !important;
    color: var(--v25-navy) !important;
    border: none !important;
}

.v25-cta-cal {
    flex-shrink: 0;
}

.v25-final-cta {
    background: var(--v25-cream);
    text-align: center;
}

.v25-final-inner {
    max-width: 640px;
}

.v25-final-inner p {
    color: #444;
    line-height: 1.6;
}

.v25-micro {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

/* Subpages: diagnóstico layout */
.v25-diag-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #f6f1e7, #fff);
}

.v25-diag-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 400px);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .v25-diag-grid {
        grid-template-columns: 1fr;
    }
}

.v25-benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.v25-benefit-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.v25-benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--v25-gold);
}

.v25-faq details {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
}

.v25-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--v25-navy);
}

.v25-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.v25-testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e8e4dc;
    font-size: 0.95rem;
    color: #444;
}

.v25-testimonial cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: var(--v25-navy);
}

.v25-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.v25-step {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e8e4dc;
    text-align: center;
}

.v25-step-num {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--v25-gold-soft);
    color: var(--v25-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Property lead modal */
.property-lead-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.property-lead-modal[hidden] {
    display: none !important;
}

.property-lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 68, 0.45);
}

.property-lead-modal__panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.property-lead-modal__panel h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    color: var(--v25-navy);
}

.property-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.v25-comprar-hero,
.v25-page-hero {
    padding: 2.5rem 0;
    background: #f6f1e7;
}

.v25-four-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.v25-step-block {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e8e4dc;
}

.v25-form-section {
    padding: 2rem 0;
    background: #fff;
}

.v25-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
}

.v25-form-card .filter-field {
    margin-bottom: 1rem;
}

.v25-inventory-trust {
    padding: 2rem 0;
    text-align: center;
    color: #555;
}

.btn-header--navy {
    background: var(--v25-navy) !important;
    color: #fff !important;
}

.v25-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.v25-blog-filters .js-blog-cat.is-active {
    outline: 2px solid var(--v25-gold, #c9a227);
    outline-offset: 2px;
}

.v25-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.v25-blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.v25-blog-card-img {
    aspect-ratio: 16 / 9;
    background: #eee;
}

.v25-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v25-blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.v25-blog-cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--v25-green, #1a5c4a);
}

.v25-blog-card-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.3;
}

.v25-blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    flex: 1;
    margin: 0;
}

.v25-blog-card-date {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.v25-article-body {
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.v25-article-body img {
    max-width: 100%;
    height: auto;
}

.v25-article-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v25-green, #1a5c4a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== v1.25.1 accessibility ===== */

/* Enlace "Saltar al contenido": debe quedar fuera de vista hasta foco (teclado).
   top: -40px dejaba visible un trozo (altura real > 40px con padding/fuente). */
.v25-skip-link {
    position: fixed;
    top: 0;
    left: max(0px, env(safe-area-inset-left, 0px));
    z-index: 10001;
    transform: translateY(-100%);
    transition: transform 0.12s ease-out;
    background: var(--v25-navy, #0a2540);
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.v25-skip-link:focus {
    transform: translateY(0);
    padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid var(--v25-gold, #c9a24b);
    outline-offset: 2px;
}

.v25-sticky-diag:focus-visible,
.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--v25-gold, #c9a24b);
}

/* ===== v1.25.1 microcopy & sticky CTA ===== */

.v25-hero-trust {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-align: center;
}

.v25-diff-sub {
    max-width: 720px;
    margin: -0.5rem auto 2rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--v25-navy, #0a2540);
    font-style: italic;
    opacity: 0.85;
}

.v25-diag-value-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
}

.v25-diag-value-bullets li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--v25-navy, #0a2540);
    font-weight: 500;
}

.v25-diag-value-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--v25-green, #1a5c4a);
    font-weight: 700;
}

.v25-sticky-diag {
    position: fixed;
    right: 1.5rem;
    bottom: 5.5rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--v25-gold, #c9a24b);
    color: var(--v25-navy, #0a2540);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v25-sticky-diag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    color: var(--v25-navy, #0a2540);
    text-decoration: none;
}

.v25-sticky-diag::before {
    content: "📋";
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .v25-sticky-diag {
        right: 1rem;
        bottom: 4.75rem;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    .v25-sticky-diag span.v25-sticky-diag-long {
        display: none;
    }
}

/* v1.27.0 — autoridad, lead magnet, video, exit intent */
.v25-authority-strip {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f0f3f8 100%);
    border-bottom: 1px solid rgba(15, 39, 68, 0.08);
    padding: 1.25rem 0 1.35rem;
    overflow: hidden;
}

.v25-authority-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--v25-gold) 20%, var(--v25-gold-soft) 50%, var(--v25-gold) 80%, transparent);
    opacity: 0.95;
}

.v25-authority-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 2rem;
    justify-content: center;
    text-align: center;
}

.v25-authority-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v25-navy-2);
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    opacity: 0.9;
}

.v25-authority-badges {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1120px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .v25-authority-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1000px) {
    .v25-authority-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem 1.15rem;
    }
}

/* Misma estructura en las 3: marca (logo o badge) + texto, columnas alineadas */
.v25-authority-badges li {
    display: grid;
    grid-template-columns: 7.75rem minmax(0, 1fr);
    column-gap: 0.9rem;
    row-gap: 0.4rem;
    align-items: center;
    min-height: 4.5rem;
    font-size: 0.86rem;
    color: #334155;
    line-height: 1.45;
    padding: 0.75rem 0.9rem 0.75rem 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 39, 68, 0.08);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(15, 39, 68, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.v25-authority-mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 2.6rem;
}

.v25-authority-mark .v25-authority-badge {
    margin-right: 0;
}

.v25-authority-item-text {
    margin: 0;
    min-width: 0;
    text-align: left;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.5;
}

.v25-authority-logo-ampi {
    display: block;
    width: 100%;
    max-width: 6.75rem;
    height: auto;
    max-height: 2.4rem;
    object-fit: contain;
    object-position: left center;
}

.v25-authority-badges li:hover {
    box-shadow: 0 6px 16px rgba(15, 39, 68, 0.08);
    border-color: rgba(201, 162, 39, 0.35);
    transform: translateY(-1px);
}

.v25-authority-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--v25-navy);
    margin-right: 0.4rem;
    padding: 0.15em 0.5em 0.12em;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.08));
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 6px;
    vertical-align: text-bottom;
    flex: 0 0 auto;
}

/* Sin logo oficial: marca tipográfica fuerte */
.v25-authority-badge--nom {
    margin-right: 0;
    text-transform: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: #fff;
    padding: 0.4em 0.6em 0.38em;
    background: linear-gradient(145deg, #1e3a5c 0%, var(--v25-navy) 100%);
    border: 2px solid var(--v25-gold);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35) inset, 0 2px 10px rgba(15, 39, 68, 0.22);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.v25-lead-magnet {
    position: relative;
    background: linear-gradient(160deg, #f5f0e6 0%, #fafbfc 35%, #eef2f7 100%);
    overflow: hidden;
}

.v25-lead-magnet::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.v25-lead-magnet::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: min(50vw, 360px);
    height: min(50vw, 360px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 39, 68, 0.06) 0%, transparent 68%);
    pointer-events: none;
}

.v25-lead-magnet .container {
    position: relative;
    z-index: 1;
}

.v25-lead-magnet-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem 2.25rem;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(15, 39, 68, 0.04), 0 16px 48px rgba(15, 39, 68, 0.1);
    padding: 2.25rem 2.25rem 2.5rem;
    border: 1px solid rgba(15, 39, 68, 0.07);
    position: relative;
    overflow: hidden;
}

.v25-lead-magnet-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--v25-navy-2), var(--v25-gold) 50%, var(--v25-navy-2));
    border-radius: 20px 20px 0 0;
}

.v25-lead-magnet-visual {
    display: flex;
    justify-content: center;
    padding-top: 0.25rem;
}

.v25-lead-magnet-mockup {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    background:
        radial-gradient(circle at 85% 12%, rgba(201, 162, 39, 0.22) 0%, transparent 45%),
        linear-gradient(155deg, var(--v25-navy) 0%, #0d2138 45%, var(--v25-navy-2) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 1.3rem 1.25rem 1.3rem;
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.45), 0 0 0 3px rgba(201, 162, 39, 0.12), 0 20px 40px rgba(15, 39, 68, 0.35);
    position: relative;
    overflow: hidden;
    /* Rotación suave: menos subpixel blur en el texto del mockup */
    transform: rotate(-0.5deg) translateZ(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.v25-lead-magnet-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v25-gold-soft), var(--v25-gold) 50%, var(--v25-gold-soft));
    z-index: 2;
}

.v25-lead-magnet-mockup:hover {
    transform: rotate(0deg) translateY(-5px) translateZ(0);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.55), 0 0 0 3px rgba(201, 162, 39, 0.18), 0 26px 52px rgba(15, 39, 68, 0.42);
}

.v25-lead-magnet-mockup::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: repeating-linear-gradient(
        -5deg,
        transparent,
        transparent 11px,
        rgba(255, 255, 255, 0.03) 11px,
        rgba(255, 255, 255, 0.03) 12px
    );
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.v25-lead-magnet-mockup > * {
    position: relative;
    z-index: 1;
}

.v25-lead-magnet-mockup-brand {
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.1rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.v25-lead-magnet-mockup-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--v25-navy);
    background: linear-gradient(180deg, #e7c758 0%, var(--v25-gold) 100%);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.v25-lead-magnet-mockup-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: 0.35rem;
    color: var(--v25-gold);
    background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, rgba(201, 162, 39, 0) 70%);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.v25-lead-magnet-mockup-shield svg {
    width: 24px;
    height: 24px;
}

.v25-lead-magnet-mockup-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.15;
    font-weight: 700;
    color: var(--v25-gold-soft);
    margin-top: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.v25-lead-magnet-mockup-sub {
    font-size: 0.72rem;
    line-height: 1.35;
    opacity: 0.88;
    color: #e6eefc;
}

.v25-lead-magnet-mockup-items {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.v25-lead-magnet-mockup-items li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.7rem;
    line-height: 1.3;
    color: #dbe5f5;
}

.v25-lead-magnet-mockup-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18em;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.7);
}

.v25-lead-magnet-mockup-items li::after {
    content: "";
    position: absolute;
    left: 0.22rem;
    top: 0.35em;
    width: 0.35rem;
    height: 0.18rem;
    border-left: 1.5px solid var(--v25-gold);
    border-bottom: 1.5px solid var(--v25-gold);
    transform: rotate(-45deg);
}

.v25-lead-magnet-mockup-seal {
    margin-top: auto;
    align-self: flex-end;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.55rem;
    border: 1px dashed rgba(201, 162, 39, 0.55);
    border-radius: 6px;
    line-height: 1;
    color: var(--v25-gold-soft);
    background: rgba(201, 162, 39, 0.08);
}

.v25-lead-magnet-mockup-seal strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.v25-lead-magnet-mockup-seal small {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    opacity: 0.85;
}

.v25-lead-magnet .v25-eyebrow {
    color: var(--v25-navy-2);
}

.v25-lead-magnet-bullets {
    margin-top: 0.5rem;
    list-style: none;
    padding-left: 0;
}

.v25-lead-magnet .v25-lead-magnet-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.4rem;
}

.v25-lead-magnet .v25-lead-magnet-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v25-gold);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.3);
}

.v25-lead-magnet-form-wrap {
    min-width: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 39, 68, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.4rem 1.45rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.v25-lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v25-field span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--v25-navy);
}

.v25-field input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    color: #1e293b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v25-field input::placeholder {
    color: #94a3b8;
}

.v25-field input:hover {
    border-color: #94a3b8;
}

.v25-field input:focus {
    outline: none;
    border-color: var(--v25-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}

.v25-check {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #334155;
}

.v25-check input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--v25-navy-2);
    cursor: pointer;
}

.v25-check a {
    color: var(--v25-navy-2);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.v25-lead-magnet-submit {
    background: linear-gradient(180deg, #d4b23b 0%, var(--v25-gold) 45%, #b08d1f 100%) !important;
    border: 1px solid rgba(201, 162, 39, 0.6) !important;
    color: var(--v25-navy) !important;
    font-weight: 700;
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(15, 39, 68, 0.08), 0 4px 14px rgba(201, 162, 39, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.v25-lead-magnet-submit:hover:not(:disabled) {
    filter: brightness(1.04);
    box-shadow: 0 4px 8px rgba(15, 39, 68, 0.1), 0 8px 24px rgba(201, 162, 39, 0.35);
    transform: translateY(-1px);
}

.v25-lead-magnet-submit:active:not(:disabled) {
    transform: translateY(0);
}

.v25-lead-magnet-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    filter: none;
    box-shadow: none;
    transform: none;
}

.v25-lead-magnet-trust {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.v25-lead-magnet-trust::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    background: var(--v25-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.v25-lead-magnet-status {
    font-size: 0.9rem;
    min-height: 1.25rem;
    margin: 0;
    color: var(--v25-navy-2);
    font-weight: 500;
}

.v25-home-video {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 30%);
    overflow: hidden;
}

.v25-home-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--v25-gold), var(--v25-gold-soft));
    opacity: 0.9;
}

.v25-home-video .container {
    text-align: center;
}

.v25-home-video .v25-h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.v25-home-video.is-hidden,
.v25-home-video[hidden] {
    display: none !important;
}

.v25-home-video-lead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.v25-home-video-frame {
    position: relative;
    max-width: 800px;
    margin: 1.75rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(15, 39, 68, 0.06), 0 20px 50px rgba(15, 39, 68, 0.14);
    aspect-ratio: 16 / 9;
    padding: 3px;
    background: linear-gradient(135deg, var(--v25-gold-soft), var(--v25-gold) 30%, var(--v25-navy-2) 90%);
}

.v25-home-video-frame::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 13px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.v25-home-video-frame iframe {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 0;
    border-radius: 13px;
    z-index: 1;
}

/* YouTube Shorts / vertical (v1.33): mismo embed, marco 9:16 centrado */
.v25-home-video-frame.v25-home-video-frame--9x16 {
    aspect-ratio: 9 / 16;
    max-width: min(380px, 100%);
    max-height: min(78vh, 720px);
}

.v25-exit-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.v25-exit-modal[hidden] {
    display: none !important;
}

.v25-exit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 45, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.v25-exit-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 18px;
    padding: 2.1rem 1.85rem 1.9rem;
    box-shadow: 0 0 0 1px rgba(15, 39, 68, 0.06), 0 24px 64px rgba(0, 0, 0, 0.22);
    border-top: 4px solid var(--v25-gold);
    animation: v25-exit-pop 0.35s ease-out;
}

@keyframes v25-exit-pop {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.v25-exit-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: rgba(15, 39, 68, 0.06);
    font-size: 1.4rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.v25-exit-modal__close:hover {
    background: rgba(15, 39, 68, 0.12);
    color: var(--v25-navy);
}

.v25-exit-modal__close:focus-visible {
    outline: 2px solid var(--v25-gold);
    outline-offset: 2px;
}

.v25-exit-modal__dialog .v25-h2 {
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    padding-right: 1.5rem;
}

.v25-exit-modal__dialog .v25-lead {
    color: #475569;
    margin-bottom: 1.25rem;
}

.v25-exit-modal__dialog .btn {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(15, 39, 68, 0.12);
}

@media (max-width: 1024px) {
    .v25-lead-magnet-card {
        grid-template-columns: 1fr;
    }

    .v25-lead-magnet-visual {
        order: -1;
    }

    .v25-lead-magnet-form-wrap {
        padding: 1.2rem 1.1rem 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v25-exit-modal__dialog,
    .v25-lead-magnet-mockup,
    .v25-lead-magnet-mockup:hover,
    .v25-lead-magnet-submit,
    .v25-lead-magnet-submit:hover:not(:disabled),
    .v25-lead-magnet-submit:active:not(:disabled),
    .v25-authority-badges li,
    .v25-authority-badges li:hover {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

.v25-actions-quick {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(15, 39, 68, 0.1);
    text-align: center;
}

.v25-actions-quick-lead {
    max-width: 520px;
    margin: 0 auto 1rem;
    font-size: 1rem;
    color: #334155;
}

.v25-actions-quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
}

.v25-thanks-pending {
    background: #f0f4f8;
    border: 1px solid rgba(15, 39, 68, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    text-align: left;
}

/* ============================================
   Formularios unificados (ex-inline de vender.html)
   ============================================ */
.funnel-form {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-light);
}

.funnel-form .container {
    max-width: 900px;
}

.funnel-form .section-label,
.funnel-form .section-title,
.funnel-form .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.lead-form {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 2px 6px -1px rgba(15, 39, 68, 0.04), 0 12px 32px rgba(15, 39, 68, 0.08);
    border: 1px solid rgba(15, 39, 68, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: capitalize;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--v25-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'%3e%3c/path%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-submit button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.form-submit button svg {
    width: 18px;
    height: 18px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.form-privacy a {
    color: var(--v25-navy-2);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.form-privacy a:hover {
    color: var(--v25-gold);
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--success-color);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.form-success p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    max-width: 500px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lead-form {
        padding: 24px;
    }
    .form-submit button {
        min-width: 100%;
    }
    .funnel-form {
        padding: 60px var(--spacing-md);
    }
}

/* Legal pages (Aviso de Privacidad, Términos y Condiciones) */
.legal-page {
    padding-top: clamp(5.5rem, 14vw, 7.5rem);
    padding-bottom: max(3rem, env(safe-area-inset-bottom, 0px));
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding-left: max(env(safe-area-inset-left, 0px), clamp(16px, 4vw, 24px));
    padding-right: max(env(safe-area-inset-right, 0px), clamp(16px, 4vw, 24px));
}
.legal-header {
    text-align: center;
    margin-bottom: 48px;
}
.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--v25-navy);
    margin-bottom: 16px;
}
.legal-header p {
    color: var(--text-muted, #666);
    font-size: 1rem;
}
.legal-i18n-notice {
    font-size: 0.9rem;
    color: #475569;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 24px;
    line-height: 1.55;
    border: 1px solid #e2e8f0;
}
.legal-i18n-notice[hidden] {
    display: none !important;
}
.legal-content {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow-wrap: anywhere;
}
.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--v25-navy);
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--v25-gold);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}
.legal-content li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}
.legal-content li::marker { color: var(--v25-gold); }
.legal-content a {
    color: var(--v25-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
.legal-content a:hover { color: var(--v25-navy); }
.legal-intro {
    font-size: 1.1rem;
    color: #333;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid var(--v25-gold);
    border-radius: 0 8px 8px 0;
    margin-bottom: 32px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v25-gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}
.back-link:hover {
    gap: 12px;
    color: var(--v25-navy);
}
.back-link svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .legal-content { padding: clamp(1.25rem, 4vw, 1.5rem); }
    .legal-page { padding-top: clamp(4.75rem, 18vw, 6.25rem); }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.15rem clamp(12px, 4vw, 18px);
        border-radius: 12px;
    }
    .legal-intro {
        padding: 1rem;
    }
}

/* ============================================================
   v1.28 — Animation system (tokens, reveal, hero, cards, modals)
   ============================================================ */
:root {
    --t-fast: 150ms;
    --t-med: 240ms;
    --t-slow: 400ms;
    --t-reveal: 520ms;
    --reveal-y: 28px;
    --reveal-x: 40px;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global reveal-on-scroll utility --- */
.reveal {
    opacity: 0;
    transform: translate3d(0, var(--reveal-y), 0);
    transition: opacity var(--t-reveal) var(--ease-out-expo),
                transform var(--t-reveal) var(--ease-out-expo);
    will-change: opacity, transform;
}
.reveal.in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
/* Variantes (añade class en el HTML): deslizamientos y escala suave */
.reveal--from-left {
    transform: translate3d(calc(-1 * var(--reveal-x)), 0, 0);
}
.reveal--from-right {
    transform: translate3d(var(--reveal-x), 0, 0);
}
.reveal--zoom {
    transform: translate3d(0, calc(var(--reveal-y) * 0.65), 0) scale(0.97);
}
.reveal--zoom.in {
    transform: translate3d(0, 0, 0) scale(1);
}
.reveal--soft-blur {
    filter: blur(6px);
    transition: opacity var(--t-reveal) var(--ease-out-expo),
                transform var(--t-reveal) var(--ease-out-expo),
                filter 640ms var(--ease-out-expo);
}
.reveal--soft-blur.in {
    filter: blur(0);
}
/* Stagger helpers: add data-reveal-delay on children of a reveal-group */
.reveal-group > .reveal { transition-delay: 0ms; }
.reveal[data-reveal-delay="1"] { transition-delay: 90ms; }
.reveal[data-reveal-delay="2"] { transition-delay: 180ms; }
.reveal[data-reveal-delay="3"] { transition-delay: 270ms; }
.reveal[data-reveal-delay="4"] { transition-delay: 360ms; }
.reveal[data-reveal-delay="5"] { transition-delay: 450ms; }
.reveal[data-reveal-delay="6"] { transition-delay: 540ms; }

/* Entrada de bloques por sección (activado por landing-common.js + html.v25-io-animate) */
html.v25-io-animate main > section:not(.v25-hero):not(.v25-hero-strip):not(.v25-sec--in) > .container {
    opacity: 0.94;
    transform: translate3d(0, 22px, 0);
    transition: opacity 0.58s var(--ease-out-expo),
                transform 0.62s var(--ease-out-expo);
}
html.v25-io-animate main > section.v25-sec--in > .container {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Hero background: sin Ken Burns infinito (evita desaparición al scroll en WebKit). Parallax ligero en script.js */

@keyframes v25HeroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.v25-hero-tag,
.v25-hero-title,
.v25-hero-sub {
    opacity: 0;
    animation: v25HeroFadeUp 720ms var(--ease-out-expo) forwards;
}
.v25-hero-tag   { animation-delay: 70ms; }
.v25-hero-title { animation-delay: 170ms; }
.v25-hero-sub   { animation-delay: 290ms; }
/* CTAs en escalera (layout base ya definido arriba en .v25-hero-cta) */
.v25-hero-cta a.btn {
    opacity: 0;
    animation: v25HeroFadeUp 720ms var(--ease-out-expo) forwards;
}
.v25-hero-cta a.btn:nth-child(1) { animation-delay: 400ms; }
.v25-hero-cta a.btn:nth-child(2) { animation-delay: 500ms; }
.v25-hero-cta a.btn:nth-child(n+3) { animation-delay: 580ms; }
.v25-hero-trust,
.v25-hero-micro {
    opacity: 0;
    animation: v25HeroFadeUp 720ms var(--ease-out-expo) forwards;
}
.v25-hero-trust { animation-delay: 560ms; }
.v25-hero-micro { animation-delay: 660ms; }

/* Scroll indicator (mouse-like pill) */
.v25-hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    z-index: 2;
    opacity: 0;
    animation: v25HeroFadeUp 720ms var(--ease-out-expo) 720ms forwards;
}
.v25-hero-scroll-indicator::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--v25-gold);
    transform: translateX(-50%);
    animation: v25ScrollDot 1.8s var(--ease-in-out) infinite;
}
@keyframes v25ScrollDot {
    0%   { transform: translate(-50%, 0);   opacity: 1; }
    70%  { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 0);   opacity: 0; }
}

/* --- Confidence strip: counters (estilos base en .v25-hero-strip) --- */
.v25-counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* --- Big cards (segmentación) hover polish --- */
.v25-big-card {
    transition: transform var(--t-med) var(--ease-out),
                box-shadow var(--t-med) var(--ease-out),
                border-color var(--t-med) var(--ease-out);
}
@media (hover: hover) {
    .v25-big-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px -18px rgba(15, 39, 68, 0.35),
                    0 0 0 1px rgba(201, 162, 39, 0.35);
    }
}

/* --- Property cards (comprar / inventario) --- */
.v25-card,
.property-card,
.public-property-card {
    transition: transform var(--t-med) var(--ease-out),
                box-shadow var(--t-med) var(--ease-out);
}
@media (hover: hover) {
    .v25-card:hover,
    .property-card:hover,
    .public-property-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px -18px rgba(15, 39, 68, 0.28);
    }
}

/* --- Skeleton loaders --- */
@keyframes v25Shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}
.v25-skeleton {
    background: linear-gradient(90deg,
        #ececec 25%, #f6f6f6 50%, #ececec 75%);
    background-size: 200% 100%;
    animation: v25Shimmer 1.4s linear infinite;
    border-radius: 8px;
    display: block;
}
.v25-card-skeleton {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    box-shadow: 0 2px 10px rgba(15, 39, 68, 0.05);
}
.v25-card-skeleton .v25-skeleton-img {
    height: 200px;
    border-radius: 0;
}
.v25-card-skeleton .v25-skeleton-body {
    padding: 1rem 1.1rem 1.25rem;
    display: grid;
    gap: 0.55rem;
}
.v25-card-skeleton .v25-skeleton-line {
    height: 12px;
    border-radius: 6px;
}
.v25-card-skeleton .v25-skeleton-line.lg { height: 18px; width: 75%; }
.v25-card-skeleton .v25-skeleton-line.md { width: 55%; }
.v25-card-skeleton .v25-skeleton-line.sm { width: 35%; }

/* --- Modal entrance animations --- */
@keyframes v25ModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes v25ModalPop {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.property-lead-modal:not([hidden]) .property-lead-modal__backdrop,
.image-viewer-modal:not([hidden]) .image-viewer-backdrop {
    animation: v25ModalFadeIn var(--t-med) var(--ease-out);
}
.property-lead-modal:not([hidden]) .property-lead-modal__panel,
.image-viewer-modal:not([hidden]) .image-viewer-content {
    animation: v25ModalPop 280ms var(--ease-out);
}

/* --- Reduced motion: neutralize everything but keep visibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
    .reveal--soft-blur.in { filter: none !important; }
    html.v25-io-animate main > section:not(.v25-hero):not(.v25-hero-strip) > .container {
        opacity: 1 !important;
        transform: none !important;
    }
    .v25-hero-tag, .v25-hero-title, .v25-hero-sub,
    .v25-hero-cta a.btn,
    .v25-hero-trust, .v25-hero-micro,
    .v25-hero-scroll-indicator { opacity: 1 !important; animation: none !important; }
}

/* --- min-width: 0 en bloques v25 (grid/flex) para anchos estrechos --- */
.v25-hero-inner,
.v25-nom-split,
.v25-two-cards,
.v25-cols-3 {
    min-width: 0;
}

/* v1.33: Conoce nuestro equipo (contacto) */
.v25-team-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.v25-team-section.is-hidden[hidden] {
    display: none !important;
}
.v25-team-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
}
.v25-team-eyebrow-wrap {
    justify-content: center;
    margin-bottom: 0.75rem;
}
.v25-team-title {
    margin-bottom: 0.75rem;
}
.v25-team-sub {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}
.v25-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 1.75rem;
    margin: 2rem auto 0;
    max-width: 56rem;
    text-align: center;
}
.v25-team-card {
    margin: 0;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 13rem;
}
/* Marco dorado + aire interior para que el rostro no roce el borde (object-fit cover) */
.v25-team-card__photo-wrap {
    width: 11.25rem;
    height: 11.25rem;
    margin: 0 auto 0.75rem;
    padding: 0.5rem;
    box-sizing: border-box;
    border-radius: 50%;
    border: 3px solid rgba(201, 162, 39, 0.55);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
    background: rgba(0, 0, 0, 0.2);
}
.v25-team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 50%;
    display: block;
}
.v25-team-card__name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}
@media (max-width: 420px) {
    .v25-team-grid {
        gap: 1.5rem 1rem;
    }
    .v25-team-card {
        max-width: 11rem;
    }
    .v25-team-card__photo-wrap {
        width: 9.5rem;
        height: 9.5rem;
        padding: 0.4rem;
    }
}
