/* ==========================================================================
   Fastcar Canarias — tema base (header + footer)
   ========================================================================== */

:root {
    --fc-font: "Inter", system-ui, -apple-system, sans-serif;
    --fc-font-display: "Manrope", "Inter", system-ui, sans-serif;

    --fc-white: #ffffff;
    --fc-black: #111111;
    --fc-text: #111114;
    --fc-text-muted: #3f4248;
    --fc-primary: #ff6100;
    --fc-whatsapp: #25d366;
    --fc-whatsapp-hover: #1ebe57;
    --fc-banner-orange: #ffe0c2;
    --fc-banner-cta-bg: #d2eeff;
    --fc-quote-bg: #0a0b12;
    --fc-surface-gray: #f4f4f5;
    --fc-border: #d9d9d9;
    --fc-border-strong: #cfcfcf;

    --fc-footer-bg: #0a0b12;
    --fc-footer-text: rgba(255, 255, 255, 0.72);
    --fc-footer-heading: rgba(255, 255, 255, 0.55);
    --fc-footer-border: rgba(255, 255, 255, 0.1);
    --fc-footer-icon-bg: rgba(255, 255, 255, 0.08);

    --fc-container: 80rem;
    --fc-header-height: 5rem;
    --fc-section-pad-sm: 2.75rem;
    --fc-section-pad-md: 3.5rem;
    --fc-section-pad-lg: 4.5rem;
    --fc-title-max: 46rem;
    --fc-ease: 0.18s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--fc-font);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--fc-text);
    background: var(--fc-white);
    -webkit-font-smoothing: antialiased;
}

p {
    font-size: 19px;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding-top: var(--fc-header-height);
}

.site-main:has(> .mod-hero:first-child),
.site-main:has(> .mod-hero-cta:first-child) {
    padding-top: 0;
}

.fc-container {
    width: 100%;
    max-width: var(--fc-container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 48rem) {
    .fc-container {
        padding-inline: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   Botones (estilo cabecera)
   -------------------------------------------------------------------------- */

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 0.6rem;
    min-height: 3rem;
    height: 3rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 9999px;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--fc-ease), transform var(--fc-ease), box-shadow var(--fc-ease), color var(--fc-ease), border-color var(--fc-ease);
}

.fc-btn:hover {
    color: var(--fc-white);
    transform: scale(1.02);
}

.fc-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.4);
}

.fc-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.fc-btn--primary {
    background: var(--fc-primary);
}

.fc-btn--primary:hover {
    background: #e55700;
    box-shadow: 0 8px 24px rgb(255 97 0 / 0.35);
}

.fc-btn--outline {
    background: var(--fc-white);
    border: 1px solid var(--fc-black);
    color: var(--fc-black);
}

.fc-btn--outline:hover {
    background: var(--fc-black);
    color: var(--fc-white);
    box-shadow: none;
}

.fc-btn--whatsapp {
    background: var(--fc-whatsapp);
}

.fc-btn--whatsapp:hover {
    background: var(--fc-whatsapp-hover);
    box-shadow: 0 8px 24px rgb(37 211 102 / 0.35);
}

.fc-btn--whatsapp-light {
    background: var(--fc-white);
    border: 1px solid var(--fc-black);
    color: var(--fc-black);
}

.fc-btn--whatsapp-light:hover {
    background: var(--fc-black);
    color: var(--fc-white);
    box-shadow: none;
}

.fc-btn--whatsapp-light svg {
    color: var(--fc-whatsapp);
}

.fc-btn--whatsapp-light:hover svg {
    color: var(--fc-whatsapp);
}

.fc-whatsapp-fab {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: var(--fc-whatsapp);
    color: var(--fc-white);
    box-shadow: 0 8px 24px rgb(37 211 102 / 0.4);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fc-whatsapp-fab svg {
    width: 1.75rem;
    height: 1.75rem;
}

.fc-whatsapp-fab:hover {
    background: var(--fc-whatsapp-hover);
    color: var(--fc-white);
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgb(37 211 102 / 0.45);
}

@media (max-width: 63.998rem) {
    .fc-whatsapp-fab {
        display: inline-flex;
    }
}

body.has-modal-open .fc-whatsapp-fab {
    display: none;
}

/* --------------------------------------------------------------------------
   Contact Form 7 — mensajes de respuesta
   -------------------------------------------------------------------------- */

.wpcf7 form .wpcf7-response-output {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: rgb(16 185 129 / 0.35);
    background: #ecfdf5;
    color: #065f46;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: rgb(239 68 68 / 0.35);
    background: #fef2f2;
    color: #991b1b;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: rgb(255 97 0 / 0.35);
    background: var(--fc-banner-orange);
    color: var(--fc-black);
}

.mod-quote-form .wpcf7 form.sent .wpcf7-response-output,
.fc-modal .wpcf7 form.sent .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgb(16 185 129 / 0.45);
    background: #ecfdf5;
    color: #065f46;
}

.mod-quote-form .wpcf7 form.failed .wpcf7-response-output,
.mod-quote-form .wpcf7 form.aborted .wpcf7-response-output,
.fc-modal .wpcf7 form.failed .wpcf7-response-output,
.fc-modal .wpcf7 form.aborted .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.failed .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.aborted .wpcf7-response-output {
    border-color: rgb(239 68 68 / 0.45);
    background: #fef2f2;
    color: #991b1b;
}

.mod-quote-form .wpcf7 form.invalid .wpcf7-response-output,
.mod-quote-form .wpcf7 form.unaccepted .wpcf7-response-output,
.mod-quote-form .wpcf7 form.spam .wpcf7-response-output,
.mod-quote-form .wpcf7 form.payment-required .wpcf7-response-output,
.fc-modal .wpcf7 form.invalid .wpcf7-response-output,
.fc-modal .wpcf7 form.unaccepted .wpcf7-response-output,
.fc-modal .wpcf7 form.spam .wpcf7-response-output,
.fc-modal .wpcf7 form.payment-required .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.invalid .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.unaccepted .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.spam .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: rgb(255 97 0 / 0.45);
    background: #fff7ed;
    color: #7c2d12;
}

.wpcf7 form.invalid input:not([type="submit"]):not([type="checkbox"]),
.wpcf7 form.invalid select,
.wpcf7 form.invalid textarea,
.wpcf7 form.unaccepted input:not([type="submit"]):not([type="checkbox"]),
.wpcf7 form.unaccepted select,
.wpcf7 form.unaccepted textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgb(239 68 68 / 0.15);
}

/* Spinner CF7 — visible y separado del botón */
.wpcf7 .wpcf7-spinner {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0.85rem auto 0;
    border: none;
    border-radius: 50%;
    background-color: var(--fc-primary);
    opacity: 1;
    visibility: visible;
    vertical-align: middle;
    position: relative;
}

.wpcf7 form.submitting .wpcf7-spinner {
    display: inline-block;
}

.wpcf7 .wpcf7-spinner::before {
    top: 0.3rem;
    left: 0.3rem;
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--fc-white);
    transform-origin: 0.45rem 0.45rem;
}

.fc-submit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.fc-submit > p,
.fc-submit p {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

.mod-quote-form-h .fc-submit,
.mod-quote-form-h .fc-submit > p,
.mod-quote-form-h .fc-submit p,
.mod-vehicle-search__form .fc-submit,
.mod-vehicle-search__form .fc-submit > p,
.mod-vehicle-search__form .fc-submit p {
    align-items: flex-start;
}

.mod-quote-form-h .wpcf7-spinner,
.mod-vehicle-search__form .wpcf7-spinner {
    margin-left: 0;
    margin-right: auto;
}

.wpcf7-turnstile {
    margin: 0.75rem 0 0.25rem;
    min-height: 1px;
}

.fc-submit .wpcf7-turnstile {
    margin-top: 0.5rem;
}

.mod-quote-form .wpcf7 form.invalid input:not([type="submit"]):not([type="checkbox"]),
.mod-quote-form .wpcf7 form.invalid select,
.mod-quote-form .wpcf7 form.invalid textarea,
.fc-modal .wpcf7 form.invalid input:not([type="submit"]):not([type="checkbox"]),
.fc-modal .wpcf7 form.invalid select,
.fc-modal .wpcf7 form.invalid textarea {
    border-color: #ffb4b8;
    box-shadow: 0 0 0 2px rgb(255 180 184 / 0.2);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: var(--fc-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Offset when WordPress admin bar is visible */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--fc-header-height);
}

@media (min-width: 64rem) {
    .site-header__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .site-header__logo {
        justify-self: start;
    }

    .site-header__nav {
        justify-self: center;
    }

    .site-header__actions {
        justify-self: end;
    }
}

.site-header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.site-header__logo img {
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: none;
    object-fit: contain;
}

.site-header__nav {
    display: none;
    align-items: center;
    height: 100%;
}

.site-header__menu {
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.site-header__link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    height: 100%;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fc-black);
    transition: color 0.15s ease;
}

.site-header__link:hover,
.site-header__link.is-active,
.site-header__item.is-open > .site-header__link {
    color: var(--fc-primary);
}

.site-header__item--has-submenu > .site-header__link {
    gap: 0.375rem;
}

.site-header__item--has-submenu > .site-header__link::after {
    content: "";
    flex-shrink: 0;
    width: 0.375rem;
    height: 0.375rem;
    margin-top: -0.125rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.15s ease, margin-top 0.15s ease;
}

.site-header__item--has-submenu.is-open > .site-header__link::after {
    transform: rotate(-135deg);
    margin-top: 0.125rem;
}

.site-header__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: none;
    min-width: 18rem;
    margin: 0;
    padding: 0.75rem 0 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    background: var(--fc-white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    list-style: none;
}

.site-header__submenu-item {
    margin: 0;
}

.site-header__submenu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fc-text);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-header__submenu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: var(--fc-white);
}

.site-header__submenu-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__submenu-text {
    min-width: 0;
}

.site-header__submenu-link:hover,
.site-header__submenu-link:focus-visible {
    background: var(--fc-surface-gray);
    color: var(--fc-primary);
}

@media (min-width: 64rem) {
    .site-header__item--has-submenu:hover > .site-header__link::after,
    .site-header__item--has-submenu:focus-within > .site-header__link::after {
        transform: rotate(-135deg);
        margin-top: 0.125rem;
    }

    .site-header__item--has-submenu:hover > .site-header__submenu,
    .site-header__item--has-submenu:focus-within > .site-header__submenu,
    .site-header__item--has-submenu.is-open > .site-header__submenu {
        display: block;
    }
}

.site-header__actions {
    display: none;
    align-items: center;
}

.site-header__toggle {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: var(--fc-black);
    font-size: 1.25rem;
    line-height: 1;
}

.site-header__toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.site-header__mobile {
    padding: 1rem 0 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__mobile[hidden] {
    display: none;
}

.site-header__mobile-nav {
    display: flex;
    flex-direction: column;
}

.site-header__mobile-nav .site-header__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.site-header__mobile-nav .site-header__item {
    position: static;
    flex-direction: column;
    align-items: stretch;
}

.site-header__mobile-nav .site-header__link {
    padding: 0.875rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fc-text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__mobile-nav .site-header__link:hover,
.site-header__mobile-nav .site-header__link.is-active,
.site-header__mobile-nav .site-header__item.is-open > .site-header__link {
    color: var(--fc-black);
}

.site-header__mobile-nav .site-header__item--has-submenu > .site-header__link {
    justify-content: space-between;
    width: 100%;
}

.site-header__mobile-nav .site-header__submenu {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0 0 0.5rem;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: none;
}

.site-header__mobile-nav .site-header__submenu-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0 0.625rem 1rem;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fc-text-muted);
}

.site-header__mobile-nav .site-header__item.is-open > .site-header__submenu {
    display: block;
}

.site-header__mobile .fc-btn {
    width: 100%;
    margin-top: 1rem;
}

@media (min-width: 64rem) {
    .site-header__nav,
    .site-header__actions {
        display: flex;
    }

    .site-header__toggle,
    .site-header__mobile {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--fc-footer-bg);
    color: var(--fc-white);
    border-top: 3px solid var(--fc-primary);
}

.site-footer__inner {
    padding-block: 2.75rem 1.25rem;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 48rem) {
    .site-footer__main {
        grid-template-columns: 1.4fr 1fr 1.1fr;
        gap: 2rem 2.5rem;
        align-items: start;
    }

    .site-footer__col--cta {
        grid-column: auto;
    }
}

@media (min-width: 64rem) {
    .site-footer__inner {
        padding-block: 3.25rem 1.5rem;
    }

    .site-footer__main {
        grid-template-columns: 1.5fr 0.9fr 1.1fr;
        gap: 2.5rem;
    }
}

.site-footer__logo img {
    height: 2.5rem;
    width: auto;
}

.site-footer__description {
    margin: 0.875rem 0 0;
    max-width: 22rem;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fc-footer-text);
}

.site-footer__description p {
    margin: 0 0 0.5rem;
    font-size: inherit;
    line-height: inherit;
}

.site-footer__description p:last-child {
    margin-bottom: 0;
}

.site-footer__description strong,
.site-footer__description b {
    color: var(--fc-white);
    font-weight: 600;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.125rem;
}

.site-footer__social a {
    display: grid;
    place-items: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    border: 1px solid var(--fc-footer-border);
    background: transparent;
    color: var(--fc-white);
    transition: background var(--fc-ease), border-color var(--fc-ease), color var(--fc-ease);
}

.site-footer__social a:hover {
    background: var(--fc-primary);
    border-color: var(--fc-primary);
    color: var(--fc-white);
}

.site-footer__social svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

.site-footer__heading {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-white);
}

.site-footer__links {
    margin-top: 0.875rem;
}

.site-footer__links li + li {
    margin-top: 0.45rem;
}

.site-footer__links a {
    font-size: 0.875rem;
    color: var(--fc-footer-text);
    transition: color var(--fc-ease);
}

.site-footer__links a:hover {
    color: var(--fc-primary);
}

.site-footer__phone {
    display: inline-block;
    margin-top: 0.875rem;
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--fc-white);
    transition: color var(--fc-ease);
}

.site-footer__phone:hover {
    color: var(--fc-primary);
}

.site-footer__whatsapp {
    margin-top: 1rem;
    width: auto;
    max-width: none;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-block: 1.125rem;
    border-top: 1px solid var(--fc-footer-border);
}

.site-footer__copyright {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__legal a {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--fc-ease);
}

.site-footer__legal a:hover {
    color: var(--fc-primary);
}

@media (min-width: 48rem) {
    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .site-footer__legal {
        justify-content: flex-end;
    }
}

/* --------------------------------------------------------------------------
   Main content (placeholder)
   -------------------------------------------------------------------------- */

.site-main__content {
    padding-block: 3rem;
}

.site-main__content--legal {
    padding-block: 2.5rem 3.5rem;
}

/* --------------------------------------------------------------------------
   Páginas legales
   -------------------------------------------------------------------------- */

.legal-document {
    color: var(--fc-text);
}

.legal-document__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e4e4e7;
}

.legal-document__title {
    margin: 0 0 0.75rem;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fc-black);
}

.legal-document__meta,
.legal-document__updated {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: var(--fc-text-muted);
}

.legal-document__section {
    margin-bottom: 2rem;
}

.legal-document__section:last-of-type {
    margin-bottom: 0;
}

.legal-document__section h2 {
    margin: 0 0 1rem;
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--fc-black);
}

.legal-document__section h3 {
    margin: 1.25rem 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--fc-black);
}

.legal-document__section p {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fc-text);
}

.legal-document__section ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fc-text);
}

.legal-document__section li + li {
    margin-top: 0.35rem;
}

.legal-document__section a {
    color: var(--fc-primary);
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.legal-document__section a:hover {
    color: #e55700;
}

.legal-document__contact {
    margin: 1rem 0 1.25rem;
    padding: 1rem 1.125rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    background: var(--fc-surface-gray);
}

.legal-document__contact p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
}

.legal-document__table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.25rem;
}

.legal-document__table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.legal-document__table th,
.legal-document__table td {
    padding: 0.625rem 0.75rem;
    border: 1px solid #e4e4e7;
    text-align: left;
    vertical-align: top;
}

.legal-document__table th {
    background: var(--fc-surface-gray);
    font-weight: 600;
    color: var(--fc-black);
}

.legal-document__table code {
    font-size: 0.75rem;
}

.legal-document__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e4e4e7;
}

.legal-document__footer p {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.legal-document__footer p:last-child {
    margin-bottom: 0;
}

@media (min-width: 48rem) {
    .legal-document__title {
        font-size: 2rem;
    }

    .legal-document__section h2 {
        font-size: 1.375rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Hero
   -------------------------------------------------------------------------- */

.mod-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100svh - var(--fc-header-height));
    max-height: calc(100svh - var(--fc-header-height));
    overflow: hidden;
    color: var(--fc-white);
}

.site-main > .mod-hero:first-child {
    height: 100svh;
    max-height: 100svh;
    padding-top: var(--fc-header-height);
    box-sizing: border-box;
}

.mod-hero__media {
    position: absolute;
    inset: 0;
}

.mod-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mod-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.55) 100%);
}

.mod-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mod-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
    min-height: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.mod-hero__copy {
    max-width: 70rem;
}

.mod-hero__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    /* text-wrap: balance; */
}

.mod-hero__subtitle {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mod-hero__logo {
    flex-shrink: 0;
}

.mod-hero__logo img {
    width: 3.25rem;
    height: auto;
    border-radius: 24px;
    /* box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9); */
    background: var(--fc-white);
    padding: 8px;
}

.mod-hero__items {
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.mod-hero__items-inner {
    display: flex;
    flex-direction: column;
}

.mod-hero__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1.25rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mod-hero__item:last-child {
    border-bottom: 0;
}

.mod-hero__item span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.35;
}

@media (min-width: 48rem) {
    .mod-hero__top {
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .mod-hero__title {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .mod-hero__subtitle {
        margin-top: 1rem;
        font-size: 0.9375rem;
        letter-spacing: 0.12em;
    }

    .mod-hero__logo img {
        width: 5.5rem;
        /* box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9); */
    }

    .mod-hero__items-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .mod-hero__item {
        padding: 1.75rem 1.25rem;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.35);
    }

    .mod-hero__item:last-child {
        border-right: 0;
    }

    .mod-hero__item span {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
}

@media (min-width: 64rem) {
    .mod-hero__top {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .mod-hero__title {
        font-size: 3.5rem;
    }

    .mod-hero__subtitle {
        font-size: 1.425rem;
    }

    .mod-hero__logo img {
        width: 7.5rem;
    }

    .mod-hero__item {
        padding: 2.25rem 1.75rem;
    }

    .mod-hero__item span {
        font-size: 1.125rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Hero CTA (formulario)
   -------------------------------------------------------------------------- */

.mod-hero-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--fc-header-height));
    overflow: hidden;
    color: var(--fc-white);
}

.site-main > .mod-hero-cta:first-child {
    min-height: 100svh;
    padding-top: var(--fc-header-height);
    box-sizing: border-box;
}

.mod-hero-cta__media {
    position: absolute;
    inset: 0;
}

.mod-hero-cta__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.mod-hero-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 42%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.mod-hero-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.mod-hero-cta__main {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mod-hero-cta__panel {
    width: 100%;
}

.mod-hero-cta__title {
    margin: 0 0 1.25rem;
    width: 100%;
    font-family: var(--fc-font-display);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mod-hero-cta__form {
    width: 100%;
    text-align: left;
}

.mod-hero-cta .wpcf7 {
    margin: 0;
    color: var(--fc-white);
}

.mod-hero-cta .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mod-hero-cta .wpcf7-form > p {
    margin: 0;
}

.mod-hero-cta .fc-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mod-hero-cta .fc-field p {
    margin: 0;
}

.mod-hero-cta .fc-field label,
.mod-hero-cta .fc-label,
.mod-hero-cta .fc-check,
.mod-hero-cta .wpcf7-list-item-label,
.mod-hero-cta .wpcf7-list-item,
.mod-hero-cta p {
    color: var(--fc-white);
}

.mod-hero-cta .fc-field label,
.mod-hero-cta .fc-label {
    font-size: 0.9375rem;
    font-weight: 600;
}

.mod-hero-cta .wpcf7-form-control-wrap {
    display: block;
}

.mod-hero-cta .wpcf7-acceptance,
.mod-hero-cta .wpcf7-acceptance .wpcf7-list-item,
.mod-hero-cta .fc-check,
.mod-hero-cta .fc-checks {
    background: transparent;
}

.mod-hero-cta input[type="text"],
.mod-hero-cta input[type="email"],
.mod-hero-cta input[type="tel"],
.mod-hero-cta select,
.mod-hero-cta textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.35;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mod-hero-cta input[type="text"]:focus,
.mod-hero-cta input[type="email"]:focus,
.mod-hero-cta input[type="tel"]:focus,
.mod-hero-cta select:focus,
.mod-hero-cta textarea:focus {
    border-color: var(--fc-primary);
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.28);
}

.mod-hero-cta .fc-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.mod-hero-cta .fc-checks br {
    display: none;
}

.mod-hero-cta .wpcf7-form > .fc-checks,
.mod-hero-cta .wpcf7-form > .fc-submit {
    margin-block: 0;
}

.mod-hero-cta .fc-check a {
    color: var(--fc-white);
    text-decoration: underline;
}

.mod-hero-cta .fc-submit {
    margin-top: 0.35rem;
}

.mod-hero-cta .fc-submit .wpcf7-form-control-wrap {
    display: block;
}

.mod-hero-cta input.wpcf7-submit,
.mod-hero-cta input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 9999px;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mod-hero-cta input.wpcf7-submit:hover,
.mod-hero-cta input[type="submit"]:hover {
    background: #e55700;
    color: var(--fc-white);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgb(255 97 0 / 0.35);
}

.mod-hero-cta input.wpcf7-submit:focus,
.mod-hero-cta input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.35);
}

.mod-hero-cta .wpcf7-not-valid-tip {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #ffb4b8;
}

.mod-hero-cta .wpcf7-response-output {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(255 255 255 / 0.25);
    background: #fff;
    color: var(--fc-black);
    font-size: 0.875rem;
}

.mod-hero-cta .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgb(16 185 129 / 0.45);
    background: #ecfdf5;
    color: #065f46;
}

.mod-hero-cta .wpcf7 form.failed .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.aborted .wpcf7-response-output {
    border-color: rgb(239 68 68 / 0.45);
    background: #fef2f2;
    color: #991b1b;
}

.mod-hero-cta .wpcf7 form.invalid .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.unaccepted .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.spam .wpcf7-response-output,
.mod-hero-cta .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: rgb(255 97 0 / 0.45);
    background: #fff7ed;
    color: #7c2d12;
}

.mod-hero-cta .wpcf7 form.invalid input:not([type="submit"]):not([type="checkbox"]),
.mod-hero-cta .wpcf7 form.invalid select,
.mod-hero-cta .wpcf7 form.invalid textarea {
    border-color: #ffb4b8;
}

.mod-hero-cta__items {
    width: 100%;
    background: var(--fc-white);
    color: var(--fc-black);
    border-top: 1px solid var(--fc-black);
}

.mod-hero-cta__items-inner {
    display: flex;
    flex-direction: column;
}

.mod-hero-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1.35rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--fc-black);
}

.mod-hero-cta__item:last-child {
    border-bottom: 0;
}

.mod-hero-cta__item span {
    font-family: var(--fc-font);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--fc-black);
}

@media (min-width: 48rem) {
    .mod-hero-cta__main {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .mod-hero-cta__title {
        width: 50%;
        margin-bottom: 1.5rem;
        font-size: 2.25rem;
        line-height: 1.15;
    }

    .mod-hero-cta__form {
        width: 33%;
    }

    .mod-hero-cta__items-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .mod-hero-cta__item {
        padding: 1.75rem 1.25rem;
        border-bottom: 0;
        border-right: 1px solid var(--fc-black);
    }

    .mod-hero-cta__item:last-child {
        border-right: 0;
    }

    .mod-hero-cta__item span {
        font-size: 1.125rem;
    }
}

@media (min-width: 64rem) {
    .mod-hero-cta__main {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .mod-hero-cta__title {
        font-size: 3rem;
    }

    .mod-hero-cta__item {
        padding: 2.15rem 1.5rem;
    }

    .mod-hero-cta__item span {
        font-size: 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Checklist
   -------------------------------------------------------------------------- */

.mod-checklist {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-checklist__title {
    margin: 0 0 2rem;
    max-width: 70rem;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-checklist__intro {
    max-width: 70rem;
    margin: -1rem 0 2rem;
    color: var(--fc-text-muted);
    line-height: 1.6;
}

.mod-checklist__intro p {
    margin: 0 0 0.75rem;
}

.mod-checklist__intro p:last-child {
    margin-bottom: 0;
}

.mod-checklist__list {
    max-width: 50rem;
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.mod-checklist__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--fc-border);
}

.mod-checklist__item:last-child {
    border-bottom: 0;
}

.mod-checklist__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--fc-primary);
    color: var(--fc-white);
}

.mod-checklist__text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--fc-black);
}

.mod-checklist__item.is-bold .mod-checklist__text {
    font-weight: 700;
}

@media (min-width: 48rem) {
    .mod-checklist {
        padding-block: 4rem;
    }

    .mod-checklist__title {
        margin-bottom: 2.5rem;
        font-size: 2rem;
    }

    .mod-checklist__item {
        padding: 1.125rem 1.5rem;
    }

    .mod-checklist__text {
        font-size: 18px;
    }
}

@media (min-width: 64rem) {
    .mod-checklist__title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Texto + CTAs
   -------------------------------------------------------------------------- */

.mod-text-cta {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-text-cta__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-text-cta__content {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fc-text);
}

.mod-text-cta__content p {
    margin: 0 0 1rem;
}

.mod-text-cta__content p:last-child {
    margin-bottom: 0;
}

.mod-text-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 2rem;
}

.mod-text-cta__actions .fc-btn {
    width: 100%;
}

.fc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.fc-modal[hidden] {
    display: none;
}

.fc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.fc-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 38rem);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 1rem;
    background: var(--fc-quote-bg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.fc-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    color: var(--fc-white);
    background: rgba(255, 255, 255, 0.08);
}

.fc-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.fc-modal__close span {
    font-size: 1.25rem;
    line-height: 1;
}

.fc-modal__title {
    margin: 0;
    padding: 1.5rem 1.5rem 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--fc-white);
}

.fc-modal__content.mod-quote-form {
    padding: 1.5rem;
}

.fc-modal__content .mod-quote-form__form {
    margin-top: 0;
}

body.has-modal-open {
    overflow: hidden;
}

@media (min-width: 48rem) {
    .mod-text-cta {
        padding-block: 4rem;
    }

    .mod-text-cta__title {
        font-size: 2rem;
    }

    .mod-text-cta__content {
        margin-top: 1.5rem;
        font-size: 1.0625rem;
    }

    .mod-text-cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .mod-text-cta__actions .fc-btn {
        width: auto;
    }

    .fc-modal {
        padding: 1.5rem;
    }

    .fc-modal__title {
        padding: 2rem 2rem 0;
        font-size: 1.875rem;
    }

    .fc-modal__content.mod-quote-form {
        padding: 2rem;
    }
}

@media (min-width: 64rem) {
    .mod-text-cta__title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Ventajas / Features
   -------------------------------------------------------------------------- */

.mod-features {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-features__title {
    margin: 0 0 1.75rem;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.mod-features__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    border: 1px solid #cfcfcf;
    background: var(--fc-white);
}

.mod-features__icon {
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--fc-primary);
}

.mod-features__icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.mod-features__card-title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.mod-features__card-text {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--fc-text);
}

@media (min-width: 48rem) {
    .mod-features {
        padding-block: 4rem;
    }

    .mod-features__title {
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .mod-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mod-features__card {
        padding: 2rem 1.5rem;
    }

    .mod-features__card-text {
        font-size: 1rem;
    }
}

@media (min-width: 64rem) {
    .mod-features__title {
        font-size: 2.25rem;
    }

    .mod-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mod-features__icon svg {
        width: 2.75rem;
        height: 2.75rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Proceso de importación
   -------------------------------------------------------------------------- */

.mod-process {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-process__header {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.mod-process__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-process__description {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.mod-process__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 50rem;
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.mod-process__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--fc-border);
}

.mod-process__item:last-child {
    border-bottom: 0;
}

.mod-process__number {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.mod-process__content {
    min-width: 0;
}

.mod-process__item-title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--fc-black);
}

.mod-process__item-text {
    margin: 0.375rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--fc-text-muted);
}

@media (min-width: 48rem) {
    .mod-process {
        padding-block: 4rem;
    }

    .mod-process__header {
        margin-bottom: 2.5rem;
    }

    .mod-process__title {
        font-size: 2rem;
    }

    .mod-process__description {
        font-size: 1.0625rem;
    }

    .mod-process__item {
        padding: 1.125rem 1.5rem;
        gap: 1.25rem;
    }

    .mod-process__number {
        width: 2rem;
        height: 2rem;
        font-size: 0.6875rem;
    }

    .mod-process__item-title {
        font-size: 1.0625rem;
    }

    .mod-process__item-text {
        font-size: 1rem;
    }
}

@media (min-width: 64rem) {
    .mod-process__title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Equipo
   -------------------------------------------------------------------------- */

.mod-team {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-team__header {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.mod-team__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-team__intro {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fc-text-muted);
}

.mod-team__intro p {
    margin: 0 0 0.875rem;
}

.mod-team__intro p:last-child {
    margin-bottom: 0;
}

.mod-team__group {
    margin: 0 0 2.5rem;
    max-width: 36rem;
}

.mod-team__group-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
}

.mod-team__members {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2.5rem;
}

.mod-team__member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
}

.mod-team__photo {
    margin: 0;
    max-width: 32rem;
}

.mod-team__photo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
}

.mod-team__content {
    min-width: 0;
}

.mod-team__name {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-team__role {
    margin: 0.375rem 0 0;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fc-primary);
}

.mod-team__bio {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--fc-text-muted);
}

.mod-team__bio p {
    margin: 0 0 0.875rem;
}

.mod-team__bio p:last-child {
    margin-bottom: 0;
}

.mod-team__footer {
    max-width: 50rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d9d9d9;
}

.mod-team__footer-title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-team__footer-text {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fc-text-muted);
}

.mod-team__footer-text p {
    margin: 0 0 0.875rem;
}

.mod-team__footer-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 48rem) {
    .mod-team {
        padding-block: 4rem;
    }

    .mod-team__header {
        margin-bottom: 2.5rem;
    }

    .mod-team__title {
        font-size: 2rem;
    }

    .mod-team__intro {
        font-size: 1.0625rem;
    }

    .mod-team__group {
        margin-bottom: 3rem;
        max-width: 32rem;
    }

    .mod-team__members {
        gap: 3rem;
    }

    .mod-team__member {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 1.5rem;
    }

    .mod-team__photo {
        max-width: 24rem;
    }

    .mod-team__member:nth-child(even) .mod-team__photo {
        order: 2;
    }

    .mod-team__name {
        font-size: 1.625rem;
    }

    .mod-team__bio {
        font-size: 1rem;
    }

    .mod-team__footer {
        margin-top: 4rem;
        padding-top: 2.5rem;
    }

    .mod-team__footer-title {
        font-size: 1.75rem;
    }

    .mod-team__footer-text {
        font-size: 1.0625rem;
    }
}

@media (min-width: 64rem) {
    .mod-team__title {
        font-size: 2.25rem;
    }

    .mod-team__member {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 1.75rem;
    }

    .mod-team__photo {
        max-width: 32rem;
    }

    .mod-team__footer-title {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Banner CTA
   -------------------------------------------------------------------------- */

.mod-banner-cta {
    width: 100%;
    background: var(--fc-banner-cta-bg);
    color: var(--fc-black);
}

.mod-banner-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-block: 2rem;
}

.mod-banner-cta__photo {
    flex-shrink: 0;
}

.mod-banner-cta__photo img {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    object-fit: cover;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
}

.mod-banner-cta__copy {
    flex: 1;
    min-width: 0;
}

.mod-banner-cta__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.mod-banner-cta__subtitle {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
}

.mod-banner-cta__subtitle p {
    margin: 0 0 0.5rem;
}

.mod-banner-cta__subtitle p:last-child {
    margin-bottom: 0;
}

.mod-banner-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.875rem;
    color: var(--fc-black);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
}

.mod-banner-cta__link:hover {
    color: var(--fc-primary);
}

.mod-banner-cta__link-arrow {
    font-weight: 700;
}

.mod-banner-cta__action {
    flex-shrink: 0;
}

.mod-banner-cta__action .fc-btn {
    width: 100%;
}

@media (min-width: 48rem) {
    .mod-banner-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding-block: 2.5rem;
    }

    .mod-banner-cta__photo img {
        width: 10rem;
        height: 10rem;
    }

    .mod-banner-cta__title {
        font-size: 1.25rem;
    }

    .mod-banner-cta__subtitle {
        font-size: 1.0625rem;
    }

    .mod-banner-cta__link {
        font-size: 1.0625rem;
    }

    .mod-banner-cta__action .fc-btn {
        width: auto;
    }
}

@media (min-width: 64rem) {
    .mod-banner-cta__inner {
        gap: 2.5rem;
        padding-block: 3rem;
    }

    .mod-banner-cta__photo img {
        width: 12rem;
        height: 12rem;
    }

    .mod-banner-cta__title {
        font-size: 1.375rem;
    }

    .mod-banner-cta__subtitle {
        font-size: 19px;
    }

    .mod-banner-cta__link {
        font-size: 19px;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Preguntas frecuentes
   -------------------------------------------------------------------------- */

.mod-faq {
    padding-block: 3rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-faq__title {
    margin: 0 0 2rem;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.mod-faq__list {
    width: 100%;
}

.mod-faq__item {
    border-bottom: 1px solid #e5e5e5;
}

.mod-faq__item:first-child {
    border-top: 1px solid #e5e5e5;
}

.mod-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding-block: 1rem;
    padding-inline: 0;
    text-align: left;
    color: var(--fc-black);
    cursor: pointer;
}

.mod-faq__question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
}

.mod-faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.mod-faq__icon::before,
.mod-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mod-faq__icon::before {
    width: 100%;
    height: 2px;
}

.mod-faq__icon::after {
    width: 2px;
    height: 100%;
}

.mod-faq__item.is-open .mod-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.mod-faq__answer {
    overflow: hidden;
}

.mod-faq__answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.mod-faq__answer-inner p {
    margin: 0 0 0.75rem;
}

.mod-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.mod-faq__more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fc-black);
    text-decoration: none;
    transition: color 0.15s ease;
}

.mod-faq__more:hover {
    color: var(--fc-primary);
}

@media (min-width: 48rem) {
    .mod-faq {
        padding-block: 4rem;
    }

    .mod-faq__title {
        margin-bottom: 2.5rem;
        font-size: 2rem;
    }

    .mod-faq__question {
        padding-block: 1.125rem;
    }

    .mod-faq__question-text {
        font-size: 1.125rem;
    }

    .mod-faq__answer-inner {
        font-size: 1rem;
        padding-bottom: 1.5rem;
    }

    .mod-faq__more {
        margin-top: 2rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 64rem) {
    .mod-faq__title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Formulario presupuesto
   -------------------------------------------------------------------------- */

.mod-quote-form {
    width: 100%;
    padding-block: 2.5rem;
    background: var(--fc-quote-bg);
    color: var(--fc-white);
}

.mod-quote-form__inner {
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
    text-align: center;
}

.mod-quote-form__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fc-white);
}

.mod-quote-form__subtitle {
    margin: 0.75rem 0 0;
    font-size: 19px;
    line-height: 1.55;
    color: var(--fc-white);
}

.mod-quote-form__form {
    margin-top: 1.5rem;
    text-align: left;
}

.mod-quote-form .wpcf7 {
    margin: 0;
    color: var(--fc-white);
}

.mod-quote-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mod-quote-form .wpcf7-form > p {
    margin: 0;
}

.mod-quote-form .fc-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mod-quote-form .fc-field p {
    margin: 0;
}

.mod-quote-form .fc-field label,
.mod-quote-form .fc-label,
.mod-quote-form .fc-check,
.mod-quote-form .wpcf7-list-item-label,
.mod-quote-form .wpcf7-list-item,
.mod-quote-form p {
    color: var(--fc-white);
}

.mod-quote-form .fc-field label,
.mod-quote-form .fc-label {
    font-size: 17px;
    font-weight: 600;
}

.mod-quote-form .wpcf7-form-control-wrap {
    display: block;
}

.mod-quote-form .wpcf7-acceptance,
.mod-quote-form .wpcf7-acceptance .wpcf7-list-item,
.mod-quote-form .fc-check,
.mod-quote-form .fc-checks {
    background: transparent;
}

.mod-quote-form input[type="text"],
.mod-quote-form input[type="email"],
.mod-quote-form input[type="tel"],
.mod-quote-form select,
.mod-quote-form textarea {
    width: 100%;
    padding: 0.7rem 0.875rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mod-quote-form textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.mod-quote-form input[type="text"]:focus,
.mod-quote-form input[type="email"]:focus,
.mod-quote-form input[type="tel"]:focus,
.mod-quote-form select:focus,
.mod-quote-form textarea:focus {
    border-color: var(--fc-primary);
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.28);
}

.mod-quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
}

.mod-quote-form .fc-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.mod-quote-form .fc-checks br {
    display: none;
}

.mod-quote-form .fc-check a {
    color: var(--fc-white);
    text-decoration: underline;
}

.mod-quote-form .fc-submit {
    margin-top: 0.35rem;
}

.mod-quote-form .fc-submit .wpcf7-form-control-wrap {
    display: block;
}

.mod-quote-form input.wpcf7-submit,
.mod-quote-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    height: 3rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 9999px;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-family: inherit;
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mod-quote-form input.wpcf7-submit:hover,
.mod-quote-form input[type="submit"]:hover {
    background: #e55700;
    color: var(--fc-white);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgb(255 97 0 / 0.35);
}

.mod-quote-form input.wpcf7-submit:focus,
.mod-quote-form input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.35);
}

.mod-quote-form .wpcf7-not-valid-tip {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #ffb4b8;
}

@media (min-width: 48rem) {
    .mod-quote-form {
        padding-block: 3.25rem;
    }

    .mod-quote-form__title {
        font-size: 1.875rem;
    }

    .mod-quote-form__subtitle {
        margin-top: 0.875rem;
    }

    .mod-quote-form__form {
        margin-top: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Formulario presupuesto horizontal
   -------------------------------------------------------------------------- */

.mod-quote-form-h {
    width: 100%;
    padding-block: 2.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-quote-form-h__title {
    margin: 0 0 1.5rem;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.mod-quote-form-h .wpcf7 {
    margin: 0;
}

.mod-quote-form-h .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mod-quote-form-h .wpcf7-form > p {
    margin: 0;
}

.mod-quote-form-h .fc-fields-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mod-quote-form-h .fc-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.mod-quote-form-h .fc-field p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mod-quote-form-h .fc-field p > * + * {
    margin-top: 0.25rem;
}

.mod-quote-form-h .fc-field br,
.mod-quote-form-h .fc-checks br {
    display: none;
}

.mod-quote-form-h .fc-label {
    display: block;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--fc-black);
}

.mod-quote-form-h .wpcf7-form-control-wrap {
    display: block;
}

.mod-quote-form-h input[type="text"],
.mod-quote-form-h input[type="email"],
.mod-quote-form-h select,
.mod-quote-form-h textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--fc-black);
    border-radius: 0.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mod-quote-form-h input[type="text"]:focus,
.mod-quote-form-h input[type="email"]:focus,
.mod-quote-form-h select:focus,
.mod-quote-form-h textarea:focus {
    border-color: var(--fc-primary);
    box-shadow: 0 0 0 2px rgb(255 97 0 / 0.25);
}

.mod-quote-form-h select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.mod-quote-form-h .fc-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mod-quote-form-h .fc-checks br {
    display: none;
}

.mod-quote-form-h .fc-check a {
    color: var(--fc-black);
    text-decoration: underline;
}

.mod-quote-form-h .fc-submit {
    display: flex;
    justify-content: flex-start;
}

.mod-quote-form-h input.wpcf7-submit,
.mod-quote-form-h input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    height: 3rem;
    padding: 0 1.8rem;
    border: 0;
    border-radius: 9999px;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-family: inherit;
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mod-quote-form-h input.wpcf7-submit:hover,
.mod-quote-form-h input[type="submit"]:hover {
    background: #e55700;
    color: var(--fc-white);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgb(255 97 0 / 0.35);
}

.mod-quote-form-h .wpcf7-not-valid-tip {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #c62828;
}

@media (min-width: 48rem) {
    .mod-quote-form-h .fc-fields-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.75rem;
    }

    .mod-quote-form-h input.wpcf7-submit,
    .mod-quote-form-h input[type="submit"] {
        width: auto;
        min-width: 16rem;
    }
}

@media (min-width: 64rem) {
    .mod-quote-form-h {
        padding-block: 3rem;
    }

    .mod-quote-form-h .fc-fields-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Búsqueda de vehículo
   -------------------------------------------------------------------------- */

.mod-vehicle-search {
    --vs-gutter: 1.5rem;
    --vs-gap: 1.25rem;
    --vs-visible: 1;
    /* Fallback CSS; JS sincroniza con el borde real del título */
    --vs-pad-left: max(var(--vs-gutter), calc((100% - var(--fc-container)) / 2 + var(--vs-gutter)));
    --vs-pad-right: var(--vs-gutter);
    --vs-slide-h: 18rem;
    --vs-slide-w: calc(100% - var(--vs-pad-left) - var(--vs-pad-right));
    --vs-title-space: 5.5rem;
    --vs-pad-top: 2.5rem;

    position: relative;
    width: 100%;
    padding-block: var(--vs-pad-top) 2.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
    isolation: isolate;
}

/* Fondo oscuro desde el inicio del módulo hasta ~mitad de las imágenes */
.mod-vehicle-search::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--vs-pad-top) + var(--vs-title-space) + (var(--vs-slide-h) / 2));
    background: #0a0b12;
    pointer-events: none;
    z-index: -1;
}

.mod-vehicle-search__title {
    margin: 0 0 1.5rem;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fc-white);
}

.mod-vehicle-search__slider {
    width: 100%;
    margin: 0 0 2.5rem;
    padding: 0;
    background: transparent;
}

.mod-vehicle-search__track {
    display: flex;
    gap: var(--vs-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--vs-pad-left);
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--vs-pad-left);
    padding-right: var(--vs-pad-right);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.mod-vehicle-search__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.mod-vehicle-search__track::-webkit-scrollbar {
    display: none;
}

.mod-vehicle-search__slide {
    flex: 0 0 var(--vs-slide-w);
    width: var(--vs-slide-w);
    scroll-snap-align: start;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #e8e8ea;
}

.mod-vehicle-search__slide img {
    display: block;
    width: 100%;
    height: var(--vs-slide-h);
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.mod-vehicle-search__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.mod-vehicle-search__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border-radius: 50%;
    background: #c4c4c8;
    transition: background 0.15s ease, transform 0.15s ease;
}

.mod-vehicle-search__dot.is-active {
    background: #71717a;
    transform: scale(1.2);
}

.mod-vehicle-search__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mod-vehicle-search__content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fc-text);
}

.mod-vehicle-search__content > *:first-child {
    margin-top: 0;
}

.mod-vehicle-search__content > *:last-child {
    margin-bottom: 0;
}

.mod-vehicle-search__content p {
    margin: 0 0 1rem;
}

.mod-vehicle-search__form .wpcf7 {
    margin: 0;
}

.mod-vehicle-search__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.mod-vehicle-search__form .wpcf7-form > p {
    margin: 0;
}

.mod-vehicle-search__form .fc-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mod-vehicle-search__form .fc-field p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mod-vehicle-search__form .fc-field p > * + * {
    margin-top: 0.25rem;
}

.mod-vehicle-search__form .fc-field br,
.mod-vehicle-search__form .fc-checks br {
    display: none;
}

.mod-vehicle-search__form .fc-label {
    display: block;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--fc-black);
}

.mod-vehicle-search__form .wpcf7-form-control-wrap {
    display: block;
}

.mod-vehicle-search__form input[type="text"],
.mod-vehicle-search__form input[type="email"],
.mod-vehicle-search__form select,
.mod-vehicle-search__form textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid #c4c4c8;
    border-radius: 0.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mod-vehicle-search__form input[type="text"]:focus,
.mod-vehicle-search__form input[type="email"]:focus,
.mod-vehicle-search__form select:focus,
.mod-vehicle-search__form textarea:focus {
    border-color: var(--fc-primary);
    box-shadow: 0 0 0 2px rgb(255 97 0 / 0.25);
}

.mod-vehicle-search__form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2353555b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.mod-vehicle-search__form .fc-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mod-vehicle-search__form .fc-checks br {
    display: none;
}

.mod-vehicle-search__form .fc-check a {
    color: var(--fc-black);
    text-decoration: underline;
}

.mod-vehicle-search__form .fc-submit {
    display: flex;
    justify-content: flex-start;
}

.mod-vehicle-search__form input.wpcf7-submit,
.mod-vehicle-search__form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    height: 3rem;
    padding: 0 1.8rem;
    border: 0;
    border-radius: 9999px;
    background: var(--fc-primary);
    color: var(--fc-white);
    font-family: inherit;
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mod-vehicle-search__form input.wpcf7-submit:hover,
.mod-vehicle-search__form input[type="submit"]:hover {
    background: #e55700;
    color: var(--fc-white);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgb(255 97 0 / 0.35);
}

.mod-vehicle-search__form .wpcf7-not-valid-tip {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #c62828;
}

@media (min-width: 48rem) {
    .mod-vehicle-search {
        --vs-gutter: 2.5rem;
        --vs-gap: 1.75rem;
        --vs-visible: 2.25;
        --vs-slide-h: 24rem;
        /* 2,25 slides visibles: 2 gaps entre las 3 franjas parciales */
        --vs-slide-w: calc((100% - var(--vs-pad-left) - var(--vs-pad-right) - (2 * var(--vs-gap))) / 2.25);
        --vs-title-space: 6rem;
        --vs-pad-top: 3rem;
        padding-block: var(--vs-pad-top) 3rem;
    }

    .mod-vehicle-search__title {
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }

    .mod-vehicle-search__slider {
        margin-bottom: 3rem;
    }

    .mod-vehicle-search__slide {
        border-radius: 1.5rem;
    }

    .mod-vehicle-search__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2.5rem;
        align-items: start;
    }
}

@media (min-width: 64rem) {
    .mod-vehicle-search {
        --vs-gap: 2rem;
        --vs-slide-h: 28rem;
        --vs-title-space: 6.5rem;
    }

    .mod-vehicle-search__title {
        font-size: 2.25rem;
    }

    .mod-vehicle-search__slide {
        border-radius: 1.75rem;
    }

    .mod-vehicle-search__grid {
        gap: 3rem;
    }

    .mod-vehicle-search__content {
        font-size: 1.0625rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Reseñas Google (Trustindex)
   -------------------------------------------------------------------------- */

.mod-reviews {
    width: 100%;
    padding-block: 2.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-reviews--gray {
    background: var(--fc-surface-gray);
}

.mod-reviews__header {
    margin-bottom: 1.75rem;
}

.mod-reviews__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mod-reviews__subtitle {
    margin: 0.75rem 0 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.mod-reviews__subtitle p {
    margin: 0 0 0.75rem;
}

.mod-reviews__subtitle p:last-child {
    margin-bottom: 0;
}

.mod-reviews__subtitle strong {
    color: var(--fc-text);
    font-weight: 700;
}

.mod-reviews__widget {
    width: 100%;
}

.mod-reviews__widget .ti-widget {
    display: block !important;
    max-width: 100%;
}

.mod-reviews__widget .ti-widget .ti-reviews-container,
.mod-reviews__widget .ti-widget .ti-reviews-container-wrapper {
    max-width: 100%;
}

.mod-reviews__widget .ti-widget .ti-review-item {
    border-radius: 0.75rem;
}

.mod-reviews__widget .ti-widget .ti-header,
.mod-reviews__widget .ti-widget .ti-footer {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 48rem) {
    .mod-reviews {
        padding-block: 3rem;
    }

    .mod-reviews__header {
        margin-bottom: 2rem;
    }

    .mod-reviews__title {
        font-size: 2rem;
    }

    .mod-reviews__subtitle {
        margin-top: 1rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 64rem) {
    .mod-reviews__title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Tarjetas CTA
   -------------------------------------------------------------------------- */

.mod-cta-cards {
    width: 100%;
    padding-block: 2.5rem;
    background: var(--fc-surface-gray);
    color: var(--fc-black);
}

.mod-cta-cards__header {
    margin-bottom: 1.75rem;
}

.mod-cta-cards__title {
    margin: 0;
    width: 100%;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mod-cta-cards__subtitle {
    margin: 0.75rem 0 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.mod-cta-cards__subtitle p {
    margin: 0 0 0.75rem;
}

.mod-cta-cards__subtitle p:last-child {
    margin-bottom: 0;
}

.mod-cta-cards__subtitle strong {
    color: var(--fc-text);
    font-weight: 700;
}

.mod-cta-cards__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mod-cta-cards__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    min-height: 22rem;
    padding: 2rem 1.5rem 1.75rem;
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
    text-align: center;
}

.mod-cta-cards__card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.mod-cta-cards__card-title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.25;
}

.mod-cta-cards__card-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--fc-text);
}

.mod-cta-cards__card-text p {
    margin: 0 0 0.5rem;
}

.mod-cta-cards__card-text p:last-child {
    margin-bottom: 0;
}

.mod-cta-cards__card-action {
    margin-top: auto;
}

.mod-cta-cards__card-action .fc-btn {
    width: 100%;
    white-space: normal;
}

@media (min-width: 48rem) {
    .mod-cta-cards {
        padding-block: 3rem;
    }

    .mod-cta-cards__header {
        margin-bottom: 2rem;
    }

    .mod-cta-cards__title {
        width: 100%;
        font-size: 2rem;
    }

    .mod-cta-cards__subtitle {
        margin-top: 1rem;
        font-size: 1.0625rem;
    }

    .mod-cta-cards__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        align-items: stretch;
    }

    .mod-cta-cards__card {
        min-height: 24rem;
        padding: 2.25rem 1.5rem 1.75rem;
        gap: 2.25rem;
    }

    .mod-cta-cards__card-title {
        font-size: 1.5rem;
    }

    .mod-cta-cards__card-text {
        font-size: 1rem;
    }
}

@media (min-width: 64rem) {
    .mod-cta-cards {
        padding-block: 3.5rem;
    }

    .mod-cta-cards__title {
        font-size: 2.25rem;
    }

    .mod-cta-cards__card {
        min-height: 26rem;
        padding: 2.5rem 1.75rem 2rem;
        gap: 2.5rem;
    }

    .mod-cta-cards__card-title {
        font-size: 1.625rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Pasos del proceso
   -------------------------------------------------------------------------- */

.mod-process-steps {
    width: 100%;
    padding-block: 3rem;
    background: #f7f7f7;
    color: var(--fc-black);
}

.mod-process-steps__header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.mod-process-steps__title {
    margin: 0;
    max-width: none;
    width: 100%;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--fc-black);
}

.mod-process-steps__subtitle {
    margin: 1rem 0 0;
    max-width: none;
    width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fc-text);
}

.mod-process-steps__subtitle p {
    margin: 0 0 0.75rem;
}

.mod-process-steps__subtitle p:last-child {
    margin-bottom: 0;
}

.mod-process-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mod-process-steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
}

.mod-process-steps__number {
    display: block;
    font-family: var(--fc-font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--fc-primary);
}

.mod-process-steps__text {
    margin: 0;
    max-width: 9.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--fc-text-muted);
}

.mod-process-steps__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.mod-process-steps__actions .fc-btn {
    min-width: 12rem;
}

@media (min-width: 48rem) {
    .mod-process-steps {
        padding-block: 4rem;
    }

    .mod-process-steps__header {
        margin-bottom: 3.5rem;
    }

    .mod-process-steps__title {
        font-size: 1.875rem;
    }

    .mod-process-steps__subtitle {
        margin-top: 1.125rem;
        font-size: 1.0625rem;
    }

    .mod-process-steps__list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: start;
        gap: 0;
        grid-template-columns: none;
    }

    .mod-process-steps__item {
        width: 220px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .mod-process-steps__item:not(:last-child)::after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 100%;
        width: 4rem;
        height: 2px;
        background: var(--fc-primary);
    }

    /* Líneas en zigzag más separadas */
    .mod-process-steps__item:nth-child(odd):not(:last-child)::after {
        top: auto;
        bottom: 0.85rem;
    }

    .mod-process-steps__item:nth-child(even):not(:last-child)::after {
        top: 3.25rem;
        bottom: auto;
    }

    .mod-process-steps__number {
        font-size: 5rem;
    }

    .mod-process-steps__text {
        max-width: 9rem;
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .mod-process-steps__actions {
        margin-top: 3.25rem;
    }
}

@media (min-width: 64rem) {
    .mod-process-steps {
        padding-block: 5rem;
    }

    .mod-process-steps__header {
        margin-bottom: 4rem;
    }

    .mod-process-steps__title {
        font-size: 2.125rem;
    }

    .mod-process-steps__subtitle {
        font-size: 1.125rem;
    }

    .mod-process-steps__item {
        width: 220px;
        padding: 0 20px;
    }

    .mod-process-steps__item:not(:last-child)::after {
        left: 100%;
        width: 4rem;
    }

    .mod-process-steps__item:nth-child(odd):not(:last-child)::after {
        bottom: 0.75rem;
    }

    .mod-process-steps__item:nth-child(even):not(:last-child)::after {
        top: 3.75rem;
    }

    .mod-process-steps__number {
        font-size: 6rem;
    }

    .mod-process-steps__text {
        max-width: 10rem;
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .mod-process-steps__actions {
        margin-top: 3.75rem;
    }
}

/* --------------------------------------------------------------------------
   Módulo: Grid de marcas
   -------------------------------------------------------------------------- */

.mod-brands-grid {
    width: 100%;
    padding-block: 2.5rem;
    background: var(--fc-white);
    color: var(--fc-black);
}

.mod-brands-grid__header {
    margin-bottom: 1.75rem;
    max-width: 70rem;
}

.mod-brands-grid__title {
    margin: 0;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mod-brands-grid__subtitle {
    margin: 0.75rem 0 0;
    font-size: 19px;
    line-height: 1.6;
    color: var(--fc-text-muted);
}

.mod-brands-grid__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mod-brands-grid__card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e4e4e7;
    border-radius: 1rem;
    background: var(--fc-surface-gray);
    color: var(--fc-white);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mod-brands-grid__card:hover {
    border-color: rgb(255 97 0 / 0.45);
    box-shadow: 0 12px 32px rgb(0 0 0 / 0.12);
    transform: translateY(-2px);
}

.mod-brands-grid__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d4d4d8;
}

.mod-brands-grid__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mod-brands-grid__card:hover .mod-brands-grid__photo {
    transform: scale(1.05);
}

.mod-brands-grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.72) 0%, rgb(0 0 0 / 0.15) 45%, transparent 70%);
    pointer-events: none;
}

.mod-brands-grid__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
}

.mod-brands-grid__logo {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    object-fit: contain;
    background: var(--fc-white);
    border-radius: 0.5rem;
    padding: 0.35rem;
}

.mod-brands-grid__name {
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fc-white);
}

@media (min-width: 40rem) {
    .mod-brands-grid__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 48rem) {
    .mod-brands-grid {
        padding-block: 3rem;
    }

    .mod-brands-grid__title {
        font-size: 2rem;
    }

    .mod-brands-grid__grid {
        gap: 1.25rem;
    }
}

@media (min-width: 64rem) {
    .mod-brands-grid__title {
        font-size: 2.25rem;
    }

    .mod-brands-grid__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 80rem) {
    .mod-brands-grid__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Módulo: Contacto
   -------------------------------------------------------------------------- */

.mod-contact {
    background: var(--fc-white);
}

.mod-contact .mod-quote-form {
    padding-block: 3rem;
}

@media (min-width: 48rem) {
    .mod-contact .mod-quote-form {
        padding-block: 4rem;
    }
}


/* ==========================================================================
   Design polish — atractivo sin perder claridad
   ========================================================================== */

a:focus-visible,
button:focus-visible,
.mod-brands-grid__card:focus-visible,
.mod-cta-cards__card-action .fc-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.4);
}

@media (prefers-reduced-motion: no-preference) {
    .mod-hero-cta__panel {
        animation: fc-fade-up 0.7s ease both;
    }

    .mod-process-steps__item {
        animation: fc-fade-up 0.55s ease both;
    }

    .mod-process-steps__item:nth-child(1) { animation-delay: 0.05s; }
    .mod-process-steps__item:nth-child(2) { animation-delay: 0.12s; }
    .mod-process-steps__item:nth-child(3) { animation-delay: 0.19s; }
    .mod-process-steps__item:nth-child(4) { animation-delay: 0.26s; }
}

@keyframes fc-fade-up {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA: overlay más enfocado al copy */
.mod-hero-cta__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.12) 68%, rgba(0, 0, 0, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

@media (min-width: 48rem) {
    .mod-hero-cta__title {
        width: 50%;
    }
}

.mod-hero-cta__items {
    border-top: 1px solid var(--fc-border-strong);
    background: var(--fc-white);
}

.mod-hero-cta__item {
    border-bottom-color: var(--fc-border);
}

.mod-hero-cta__item span {
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--fc-text);
}

@media (min-width: 48rem) {
    .mod-hero-cta__item {
        border-right: 1px solid var(--fc-border);
        border-bottom: 0;
    }
}

/* Hero clásico: overlay lateral */
.mod-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.45) 100%);
}

/* Ritmo de secciones */
.mod-reviews,
.mod-cta-cards,
.mod-process-steps,
.mod-brands-grid,
.mod-features,
.mod-text-cta,
.mod-checklist,
.mod-faq {
    padding-block: var(--fc-section-pad-sm);
}

@media (min-width: 48rem) {
    .mod-reviews,
    .mod-cta-cards,
    .mod-process-steps,
    .mod-brands-grid,
    .mod-features,
    .mod-text-cta,
    .mod-checklist,
    .mod-faq {
        padding-block: var(--fc-section-pad-md);
    }
}

@media (min-width: 64rem) {
    .mod-reviews,
    .mod-cta-cards,
    .mod-process-steps,
    .mod-brands-grid,
    .mod-features,
    .mod-text-cta,
    .mod-checklist,
    .mod-faq {
        padding-block: var(--fc-section-pad-lg);
    }
}

.mod-reviews__title,
.mod-cta-cards__title,
.mod-brands-grid__title,
.mod-features__title,
.mod-text-cta__title,
.mod-checklist__title,
.mod-faq__title,
.mod-process-steps__title,
.mod-process__title,
.mod-team__title,
.mod-vehicle-search__title,
.mod-quote-form__title,
.mod-quote-form-h__title,
.mod-banner-cta__title {
    max-width: none;
    width: 100%;
}

.mod-brands-grid__header {
    max-width: none;
    width: 100%;
}

/* Reviews */
.mod-reviews__header {
    margin-bottom: 2.25rem;
}

.mod-reviews__trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    background: rgb(255 97 0 / 0.1);
    color: var(--fc-text);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.mod-reviews__widget {
    margin-top: 0.25rem;
}

/* CTA cards: alargadas, título grande */
.mod-cta-cards {
    background: var(--fc-white);
}

.mod-cta-cards__card {
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
    transition: border-color var(--fc-ease), box-shadow var(--fc-ease), transform var(--fc-ease);
}

.mod-cta-cards__card:hover {
    border-color: rgb(255 97 0 / 0.55);
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.08);
    transform: translateY(-2px);
}

/* Features */
.mod-features__card {
    border: 1px solid var(--fc-border);
    border-radius: 0.75rem;
    transition: border-color var(--fc-ease), box-shadow var(--fc-ease), transform var(--fc-ease);
}

.mod-features__card:hover {
    border-color: rgb(255 97 0 / 0.45);
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.07);
    transform: translateY(-2px);
}

.mod-features__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background: rgb(255 97 0 / 0.1);
}

.mod-features__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Process steps */
.mod-process-steps {
    background: var(--fc-surface-gray);
}

.mod-process-steps__text {
    max-width: 10rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.6;
}

@media (min-width: 48rem) {
    .mod-process-steps__item:not(:last-child)::after {
        width: 4rem;
        height: 2px;
        left: 100%;
    }

    .mod-process-steps__item:nth-child(odd):not(:last-child)::after {
        bottom: 0.85rem;
    }

    .mod-process-steps__item:nth-child(even):not(:last-child)::after {
        top: 3.25rem;
    }
}

@media (min-width: 64rem) {
    .mod-process-steps__item:not(:last-child)::after {
        width: 4rem;
        left: 100%;
    }

    .mod-process-steps__item:nth-child(odd):not(:last-child)::after {
        bottom: 0.75rem;
    }

    .mod-process-steps__item:nth-child(even):not(:last-child)::after {
        top: 3.75rem;
    }

    .mod-process-steps__text {
        max-width: 10.5rem;
    }
}

/* Banner CTA */
.mod-banner-cta__photo img {
    border: 0;
    box-shadow: none;
}

.mod-banner-cta__link {
    transition: color var(--fc-ease);
}

.mod-banner-cta__link:hover {
    color: var(--fc-primary);
}

.mod-banner-cta__link:hover .mod-banner-cta__link-arrow {
    transform: translateX(0.15rem);
}

.mod-banner-cta__link-arrow {
    display: inline-block;
    transition: transform var(--fc-ease);
}

.mod-banner-cta__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 97 0 / 0.35);
    border-radius: 0.25rem;
}

/* Brands */
.mod-brands-grid__name {
    font-size: 1.35rem;
    text-shadow: 0 1px 8px rgb(0 0 0 / 0.35);
}

.mod-brands-grid__logo {
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
    transition: transform var(--fc-ease);
}

.mod-brands-grid__card:hover .mod-brands-grid__logo {
    transform: scale(1.06);
}

.mod-brands-grid__card:hover .mod-brands-grid__photo {
    transform: scale(1.07);
}

.mod-brands-grid__more {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

.mod-brands-grid__more .fc-btn {
    min-width: 12rem;
}

/* Checklist / process list borders */
.mod-checklist__list,
.mod-process__list {
    border-color: var(--fc-border);
}

.mod-checklist__item,
.mod-process__item {
    border-bottom-color: var(--fc-border);
}

/* Modal polish */
.fc-modal__dialog {
    border-radius: 1.1rem;
    box-shadow: 0 28px 70px rgb(0 0 0 / 0.4);
}

.fc-modal__title {
    padding-right: 2.5rem;
}

.fc-modal__content.mod-quote-form {
    padding-top: 0.5rem;
}

/* Quote form denser labels */
.mod-quote-form .fc-field label,
.mod-quote-form .fc-label {
    font-size: 0.9375rem;
}

.mod-quote-form .wpcf7-form {
    gap: 0.45rem;
}

.mod-quote-form input[type="text"],
.mod-quote-form input[type="email"],
.mod-quote-form input[type="tel"],
.mod-quote-form select,
.mod-quote-form textarea {
    padding: 0.65rem 0.8rem;
    font-family: inherit;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.mod-quote-form .fc-submit,
.mod-hero-cta .fc-submit,
.mod-quote-form-h .fc-submit,
.mod-vehicle-search__form .fc-submit {
    margin-top: 0.25rem;
}

.fc-checks > p,
.fc-checks p,
.fc-submit > p,
.fc-submit p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   Formularios CF7 — checkboxes unificados
   Soporta:
   A) <label class="fc-check">[acceptance] texto <a></a></label>
   B) <div class="fc-check">[acceptance] texto [/acceptance]</div>
   -------------------------------------------------------------------------- */

.mod-quote-form .fc-checks,
.mod-hero-cta .fc-checks,
.mod-quote-form-h .fc-checks,
.mod-vehicle-search__form .fc-checks {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.mod-quote-form .fc-checks br,
.mod-hero-cta .fc-checks br,
.mod-quote-form-h .fc-checks br,
.mod-vehicle-search__form .fc-checks br,
.mod-quote-form .fc-check br,
.mod-hero-cta .fc-check br,
.mod-quote-form-h .fc-check br,
.mod-vehicle-search__form .fc-check br {
    display: none;
}

.mod-quote-form .fc-check,
.mod-hero-cta .fc-check,
.mod-quote-form-h .fc-check,
.mod-vehicle-search__form .fc-check {
    display: block;
    margin: 10px 0;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.35;
    background: transparent;
}

/*
 * El wrap de CF7 es block por defecto (campos de texto).
 * En checkboxes debe ser inline para que el texto (y los <a>) fluyan al lado.
 */
.mod-quote-form .fc-check .wpcf7-form-control-wrap,
.mod-hero-cta .fc-check .wpcf7-form-control-wrap,
.mod-quote-form-h .fc-check .wpcf7-form-control-wrap,
.mod-vehicle-search__form .fc-check .wpcf7-form-control-wrap,
.mod-quote-form .fc-checks > .wpcf7-form-control-wrap,
.mod-hero-cta .fc-checks > .wpcf7-form-control-wrap,
.mod-quote-form-h .fc-checks > .wpcf7-form-control-wrap,
.mod-vehicle-search__form .fc-checks > .wpcf7-form-control-wrap,
.mod-quote-form .fc-check .wpcf7-acceptance,
.mod-hero-cta .fc-check .wpcf7-acceptance,
.mod-quote-form-h .fc-check .wpcf7-acceptance,
.mod-vehicle-search__form .fc-check .wpcf7-acceptance,
.mod-quote-form .fc-checks .wpcf7-acceptance,
.mod-hero-cta .fc-checks .wpcf7-acceptance,
.mod-quote-form-h .fc-checks .wpcf7-acceptance,
.mod-vehicle-search__form .fc-checks .wpcf7-acceptance,
.mod-quote-form .fc-check .wpcf7-list-item,
.mod-hero-cta .fc-check .wpcf7-list-item,
.mod-quote-form-h .fc-check .wpcf7-list-item,
.mod-vehicle-search__form .fc-check .wpcf7-list-item,
.mod-quote-form .fc-checks .wpcf7-list-item,
.mod-hero-cta .fc-checks .wpcf7-list-item,
.mod-quote-form-h .fc-checks .wpcf7-list-item,
.mod-vehicle-search__form .fc-checks .wpcf7-list-item,
.mod-quote-form .fc-check .wpcf7-list-item > label,
.mod-hero-cta .fc-check .wpcf7-list-item > label,
.mod-quote-form-h .fc-check .wpcf7-list-item > label,
.mod-vehicle-search__form .fc-check .wpcf7-list-item > label,
.mod-quote-form .fc-checks .wpcf7-list-item > label,
.mod-hero-cta .fc-checks .wpcf7-list-item > label,
.mod-quote-form-h .fc-checks .wpcf7-list-item > label,
.mod-vehicle-search__form .fc-checks .wpcf7-list-item > label,
.mod-quote-form .fc-check .wpcf7-list-item-label,
.mod-hero-cta .fc-check .wpcf7-list-item-label,
.mod-quote-form-h .fc-check .wpcf7-list-item-label,
.mod-vehicle-search__form .fc-check .wpcf7-list-item-label,
.mod-quote-form .fc-checks .wpcf7-list-item-label,
.mod-hero-cta .fc-checks .wpcf7-list-item-label,
.mod-quote-form-h .fc-checks .wpcf7-list-item-label,
.mod-vehicle-search__form .fc-checks .wpcf7-list-item-label {
    display: inline;
    margin: 0 !important;
    padding: 0;
    background: transparent;
    vertical-align: middle;
}

.mod-quote-form .fc-check input[type="checkbox"],
.mod-hero-cta .fc-check input[type="checkbox"],
.mod-quote-form-h .fc-check input[type="checkbox"],
.mod-vehicle-search__form .fc-check input[type="checkbox"],
.mod-quote-form .fc-checks input[type="checkbox"],
.mod-hero-cta .fc-checks input[type="checkbox"],
.mod-quote-form-h .fc-checks input[type="checkbox"],
.mod-vehicle-search__form .fc-checks input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0.5rem 0 0;
    padding: 0;
    flex-shrink: 0;
    accent-color: var(--fc-primary);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.mod-quote-form .fc-checks,
.mod-hero-cta .fc-checks {
    font-size: 0.875rem;
    line-height: 1.35;
}

.mod-quote-form-h .fc-check,
.mod-quote-form-h .fc-checks,
.mod-vehicle-search__form .fc-check,
.mod-vehicle-search__form .fc-checks {
    color: var(--fc-black);
    font-size: 0.875rem;
    line-height: 1.35;
}

/* FAB: no tapar CTAs finales */
@media (max-width: 63.998rem) {
    .site-main {
        padding-bottom: 5rem;
    }

    .fc-whatsapp-fab:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgb(255 97 0 / 0.45), 0 8px 24px rgb(37 211 102 / 0.4);
    }
}
