/* ==================================================
   VARIABLES DE MARCA
   (extraídas de reparatecvalencia.com/.../site.css)
   ================================================== */

:root {
    --primary: #c1552c;
    --primary-dark: #0b2836;
    --primary-light: #dd7f52;
    --accent: #c1552c;
    --accent-light: #dd7f52;
    --text: #16323f;
    --muted: #55707c;
    --soft: #f6f3ee;
    --soft-2: #ece7dc;
    --border: #e4e0d6;
    --white: #ffffff;
    --dark: #0d111a;
    --success: #16a34a;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(193, 85, 44, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(193, 85, 44, 0.14), 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 32px 80px rgba(193, 85, 44, 0.18), 0 12px 32px rgba(0, 0, 0, 0.1);

    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --transition: 0.2s ease;
}

/* ==================================================
   BASE / TIPOGRAFÍA
   ================================================== */

body {
    color: var(--text);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(40px, 6.5vw, 72px);
}

h2 {
    font-size: clamp(28px, 4.2vw, 46px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 24px);
}

/* ==================================================
   LAYOUT COMPARTIDO
   ================================================== */

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--soft);
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    max-width: 760px;
}

.section-header.centered h2 {
    margin-inline: auto;
}

.section-header p {
    max-width: 680px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-header.centered p {
    margin-inline: auto;
}

/* ==================================================
   KICKER
   ================================================== */

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px 6px 10px;
    border: 1px solid rgba(193, 85, 44, 0.15);
    border-radius: var(--radius-full);
    background: rgba(193, 85, 44, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kicker::before {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    content: "";
    border-radius: var(--radius-full);
    background: var(--accent);
}

.section-header.centered .kicker {
    margin-inline: auto;
}

.kicker-light {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

/* ==================================================
   BOTONES Y ACCIONES
   ================================================== */

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 13px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition),
        color var(--transition);
}

/* Por defecto para botones sobre fondos oscuros (primary/whatsapp/ghost) */

.btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

/* .btn-outline vive sobre fondos claros: un contorno blanco ahí sería invisible */

.btn-outline:focus-visible {
    outline: 3px solid var(--primary-dark);
    outline-offset: 3px;
}

/* Botones sólidos (texto blanco): se fuerza el color porque no pueden
   depender de que ningún otro CSS del theme no los pise */

.btn-primary,
.btn-whatsapp,
.btn-ghost {
    color: var(--white) !important;
}

/* Llamar */

.btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(193, 85, 44, 0.25);
}

.btn-primary:hover {
    background: #9c4322;
    box-shadow: 0 8px 28px rgba(193, 85, 44, 0.35);
    transform: translateY(-2px);
}

/* WhatsApp */

.btn-whatsapp {
    background: #087b35;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #06662c;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

/* Botón transparente (sobre fondos oscuros) */

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Botón con borde de marca (sobre fondos claros) */

.btn-outline {
    border-color: rgba(11, 40, 54, 0.3);
    background: transparent;
    color: var(--primary-dark) !important;
}

.btn-outline:hover {
    border-color: var(--primary-dark);
    background: rgba(11, 40, 54, 0.06);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

/* ==================================================
   TARJETAS DE SERVICIO
   ================================================== */

.card-grid-3 {
    display: grid;
    gap: 22px;
}

@media (min-width: 640px) {
    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 980px) {
    .card-grid-3 {
        /* Columnas de ancho fijo + justify-content: center para que una
           última fila incompleta (5, 7... tarjetas) quede centrada en vez
           de estirarse o dejar un hueco a la derecha */
        grid-template-columns: repeat(3, minmax(0, 320px));
        justify-content: center;
    }
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    border-color: rgba(193, 85, 44, 0.15);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.service-card-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft-2);
}

.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-thumb img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 26px 26px 28px;
}

.service-card-accent {
    width: 44px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.service-card-body h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.service-card-body p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition:
        gap var(--transition),
        color var(--transition);
}

.card-link::after {
    content: "→";
    transition: transform var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--accent);
}

/* ==================================================
   DOS COLUMNAS + CHECKLIST
   ================================================== */

.two-col {
    display: grid;
    align-items: center;
    gap: 52px;
}

.two-col-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.two-col-copy h2 {
    margin-bottom: 16px;
}

.two-col-copy p {
    margin-bottom: 16px;
    color: var(--muted);
}

.two-col-copy .actions {
    margin-top: 28px;
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 15.5px;
    font-weight: 600;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.check-list li:hover {
    border-color: rgba(193, 85, 44, 0.18);
    box-shadow: var(--shadow-md);
}

.check-list li::before {
    width: 22px;
    height: 22px;
    min-width: 22px;
    content: "";
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
}

@media (min-width: 980px) {
    .two-col {
        grid-template-columns: 1fr 0.85fr;
    }
}

/* ==================================================
   RESEÑAS (Trustindex)
   ================================================== */

.reviews-section {
    background: var(--white);
}

.reviews-widget {
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(193, 85, 44, 0.1);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.reviews-widget:empty {
    display: none;
}

/* ==================================================
   GALERÍA DE TRABAJOS
   ================================================== */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: var(--soft-2);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    background: rgba(23, 19, 95, 0.5);
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }
}

/* ==================================================
   CONTACTO + FORMULARIO + MAPA
   ================================================== */

.contact-wrapper {
    display: grid;
    align-items: start;
    gap: 52px;
}

.contact-wrapper-compact {
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 24px;
    color: var(--muted);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--soft);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.contact-detail:hover {
    border-color: rgba(193, 85, 44, 0.18);
    box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--primary-dark);
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-detail-text h3 {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-detail-text a {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-detail-text a:hover {
    color: var(--primary);
}

.contact-detail-text p {
    margin: 0;
    color: var(--text);
    font-size: 15.5px;
    font-weight: 600;
}

.contact-map {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}

.contact-form-card {
    width: 100%;
    padding: 34px;
    border: 1px solid rgba(193, 85, 44, 0.1);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.rtv-wpforms h3 {
    margin-bottom: 22px;
    font-size: 24px;
}

.rtv-wpforms .wpforms-field {
    margin-bottom: 18px;
}

.rtv-wpforms .wpforms-field-label {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 700;
}

.rtv-wpforms .wpforms-required-label {
    color: var(--primary);
}

.rtv-wpforms input[type="text"],
.rtv-wpforms input[type="tel"],
.rtv-wpforms input[type="email"],
.rtv-wpforms textarea,
.rtv-wpforms select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 15px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.rtv-wpforms textarea {
    min-height: 120px;
    resize: vertical;
}

.rtv-wpforms input:focus,
.rtv-wpforms textarea:focus,
.rtv-wpforms select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193, 85, 44, 0.12);
}

.rtv-wpforms .wpforms-field-row {
    display: flex;
    gap: 12px;
}

.rtv-wpforms .wpforms-submit-container {
    margin-top: 8px;
}

.rtv-wpforms button.wpforms-submit,
.rtv-wpforms .wpforms-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 13px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white) !important;
    font-size: 15.5px;
    font-weight: 700;
    transition:
        background-color var(--transition),
        transform var(--transition);
}

.rtv-wpforms button.wpforms-submit:hover,
.rtv-wpforms .wpforms-submit:hover {
    background: #9c4322;
    transform: translateY(-2px);
}

.rtv-wpforms .wpforms-error,
.rtv-wpforms label.wpforms-error {
    margin-top: 4px;
    color: #dc2626;
    font-size: 13px;
}

@media (min-width: 980px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 24px 18px;
    }

    .rtv-wpforms .wpforms-field-row {
        flex-direction: column;
    }
}

/* ==================================================
   STATS BAR
   ================================================== */

.stats-bar {
    padding: 52px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 8px 16px;
}

.stat-number {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

@media (min-width: 980px) {
    .stat-item {
        border-left: 1px solid var(--border);
    }

    .stat-item:first-child {
        border-left: none;
    }
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 980px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================================================
   HERO HOME
   ================================================== */

.hero-home {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    /* dvh evita el salto al mostrar/ocultar la barra de direcciones en móvil;
       el valor en vh anterior queda como fallback para navegadores sin soporte */
    min-height: min(100vh, 820px);
    min-height: min(100dvh, 820px);
    overflow: hidden;
    background-color: var(--primary-dark);
}

@media (max-height: 500px) {
    .hero-home {
        min-height: auto;
    }
}

.hero-slider {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    animation: heroSlide 28s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-slide:nth-child(1) {
    opacity: 1;
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 7s;
}

.hero-slide:nth-child(3) {
    animation-delay: 14s;
}

.hero-slide:nth-child(4) {
    animation-delay: 21s;
}

@keyframes heroSlide {
    0% {
        opacity: 1;
        transform: scale(1.04);
    }

    22% {
        opacity: 1;
    }

    26% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Si solamente existe una imagen, no ocultarla */

.hero-slide:only-child {
    opacity: 1;
    animation: none;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(11, 40, 54, 0.88) 0%,
            rgba(11, 40, 54, 0.65) 55%,
            rgba(11, 40, 54, 0.3) 100%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-home-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.hero-copy {
    max-width: 820px;
}

.hero-home .kicker {
    margin-bottom: 16px;
}

.hero-home h1 {
    margin-bottom: 24px;
    overflow-wrap: break-word;
    color: var(--white);
    font-size: clamp(38px, 6vw, 70px);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 0 18px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.4;
}

.hero-intro {
    max-width: 620px;
    margin: 0 0 36px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 600px) {
    .hero-home-content {
        padding: 60px 0;
    }

    .hero-home .btn {
        white-space: normal;
    }

    .hero-slide {
        background-position: 60% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        display: none;
        animation: none;
    }

    .hero-slide:first-child {
        display: block;
        opacity: 1;
        transform: none;
    }
}

/* ==================================================
   CTA HOME
   ================================================== */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: var(--primary-dark);
    text-align: center;
}

.cta-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(
        ellipse 700px 500px at 50% 0%,
        rgba(193, 85, 44, 0.18) 0%,
        transparent 70%
    );
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .kicker {
    display: table;
    margin-inline: auto;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cta-section h2 {
    max-width: 700px;
    margin: 0 auto 16px;
    color: var(--white);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

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

/* ==================================================
   PASOS NUMERADOS (proceso de trabajo)
   ================================================== */

.steps-list {
    display: grid;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-full);
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
}

.step-body h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.step-body p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================================================
   CHIPS (zona de cobertura)
   ================================================== */

.chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.chip {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

/* ==================================================
   PREGUNTAS FRECUENTES
   ================================================== */

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    flex-shrink: 0;
    content: "+";
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================================================
   SERVICIOS RELACIONADOS
   ================================================== */

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    font-size: 14.5px;
    font-weight: 700;
    transition:
        border-color var(--transition),
        color var(--transition);
}

.related-link::after {
    content: "→";
    color: var(--primary);
}

.related-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* CTA con formulario embebido (plantilla de servicio) */

.cta-form-card {
    max-width: 480px;
    margin: 36px auto 0;
    text-align: left;
}

/* ==================================================
   MÓVIL (global)
   ================================================== */

@media (max-width: 600px) {
    .section {
        padding: 64px 0;
    }
}
