/* ==========================================================================
   BATERÍAS EXPRESS - LANDING PAGE CSS
   Servicio de Desvare y Auxilio de Batería a Domicilio
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIABLES CSS - FÁCIL PERSONALIZACIÓN
   -------------------------------------------------------------------------- */
:root {
    /* Colores Principales */
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #0f0f0f;
    --color-bg-card: #252525;
    --color-bg-card-hover: #2a2a2a;

    /* Colores de Marca */
    --color-primary: #d60000;
    --color-primary-dark: #b30000;
    --color-accent: #ffcc00;
    --color-accent-dark: #e6b800;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1da851;
    --color-call: #ff4444;
    --color-call-dark: #cc0000;

    /* Textos */
    --color-text-white: #ffffff;
    --color-text-light: #e0e0e0;
    --color-text-muted: #999999;
    --color-text-dark: #333333;

    /* Tipografía */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Bordes */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-accent: 0 0 30px rgba(255, 204, 0, 0.3);
    --shadow-glow-primary: 0 0 30px rgba(214, 0, 0, 0.3);

    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Header */
    --header-height: 70px;

    /* Sticky Bottom */
    --sticky-bottom-height: 60px;
}

/* --------------------------------------------------------------------------
   RESET Y BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* --------------------------------------------------------------------------
   UTILIDADES
   -------------------------------------------------------------------------- */
.highlight {
    color: var(--color-primary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   BOTONES
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-text-dark);
    box-shadow: var(--shadow-md), var(--shadow-glow-accent);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 204, 0, 0.5);
}

.btn--whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
    color: var(--color-text-white);
    box-shadow: var(--shadow-md);
}

.btn--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn--urgent {
    background: var(--color-accent);
    color: var(--color-text-dark);
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.btn--urgent:hover {
    background: var(--color-accent-dark);
}

.btn--giant {
    flex-direction: column;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.btn--giant .btn__icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.btn--giant .btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn--giant .btn__main {
    font-size: 1.1rem;
}

.btn--giant .btn__sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
}

.btn--card {
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    margin-top: auto;
}

.btn--card:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.btn--card-featured {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.btn--card-featured:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo__icon {
    font-size: 2rem;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.2;
}

.logo__tagline {
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('imagenes/bateria_expres.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(214, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(214, 0, 0, 0.2);
    border: 1px solid var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease;
}

.badge__icon {
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--color-text-light);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__subtitle strong {
    color: var(--color-accent);
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__urgency {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.urgency__pulse {
    width: 10px;
    height: 10px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    animation: urgencyPulse 1.5s infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
    background: var(--color-bg-darker);
    padding: var(--spacing-lg) var(--spacing-md);
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.trust-bar__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
}

.trust-item__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-item__text {
    display: flex;
    flex-direction: column;
}

.trust-item__text strong {
    font-size: 0.9rem;
    color: var(--color-text-white);
}

.trust-item__text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   SERVICIOS
   -------------------------------------------------------------------------- */
.services {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--color-bg-dark);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.service-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--color-bg-card-hover);
    border-color: rgba(214, 0, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(214, 0, 0, 0.1), transparent);
}

.service-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 50px;
    white-space: nowrap;
}

.service-card__icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-card__icon {
    font-size: 2rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.service-card__description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-card__features {
    margin-bottom: var(--spacing-lg);
}

.service-card__features li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card__features li:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   VEHÍCULOS
   -------------------------------------------------------------------------- */
.vehicles {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--color-bg-darker);
}

.vehicles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.vehicle-item {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vehicle-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.vehicle-item__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.vehicle-item__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-white);
    display: block;
    margin-bottom: 4px;
}

.vehicle-item__detail {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.vehicles__brands {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 204, 0, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px dashed rgba(255, 204, 0, 0.3);
}

.vehicles__brands p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.vehicles__brands strong {
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   COBERTURA
   -------------------------------------------------------------------------- */
.coverage {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--color-bg-dark);
}

.coverage__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.coverage__content .section-tag,
.coverage__content .section-title {
    text-align: left;
}

.coverage__description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.coverage__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.coverage__list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.coverage__check {
    color: var(--color-whatsapp);
    font-weight: 700;
}

.coverage__visual {
    display: flex;
    justify-content: center;
}

.coverage__map-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at center, rgba(214, 0, 0, 0.2) 0%, transparent 70%),
        var(--color-bg-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    position: relative;
}

.map-pin {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.map-pin__icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.map-pin__pulse {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: rgba(214, 0, 0, 0.3);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pinPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.2;
    }
}

.coverage__map-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.coverage__response {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   CTA FINAL
   -------------------------------------------------------------------------- */
.final-cta {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-bg-darker) 100%);
    text-align: center;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.final-cta__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.final-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.final-cta__guarantee {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-darker);
    padding: var(--spacing-3xl) var(--spacing-md) calc(var(--spacing-3xl) + var(--sticky-bottom-height));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer__logo .logo__icon {
    font-size: 1.5rem;
}

.footer__logo .logo__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-white);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer__contact h3,
.footer__services h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__contact ul li,
.footer__services ul li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer__contact ul li a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.footer__keywords {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   STICKY BOTTOM NAV (MOBILE)
   -------------------------------------------------------------------------- */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    height: var(--sticky-bottom-height);
    background: var(--color-bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-bottom__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.sticky-bottom__btn--whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-text-white);
}

.sticky-bottom__btn--whatsapp:hover,
.sticky-bottom__btn--whatsapp:active {
    background: var(--color-whatsapp-dark);
}

.sticky-bottom__btn--call {
    background: var(--color-call);
    color: var(--color-text-white);
}

.sticky-bottom__btn--call:hover,
.sticky-bottom__btn--call:active {
    background: var(--color-call-dark);
}

.sticky-bottom__icon {
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE - MOBILE FIXES
   -------------------------------------------------------------------------- */
@media (max-width: 599px) {
    .header__cta.btn {
        padding: 8px 16px;
        /* Reducir padding vertical drásticamente */
        font-size: 0.85rem;
        min-height: auto;
    }

    .header__cta img {
        width: 16px !important;
        height: 16px !important;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE - TABLET
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn--giant {
        min-width: 280px;
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1.1rem;
        max-width: none;
    }

    .trust-bar__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        justify-self: center;
    }

    .vehicles__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .coverage__list {
        grid-template-columns: repeat(4, 1fr);
    }

    .final-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE - DESKTOP
   -------------------------------------------------------------------------- */
@media (min-width: 900px) {
    :root {
        --header-height: 80px;
    }

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

    .service-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .coverage__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    /* Ocultar sticky bottom en desktop */
    .sticky-bottom {
        display: none;
    }

    .footer {
        padding-bottom: var(--spacing-3xl);
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE - DESKTOP GRANDE
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .hero__subtitle {
        font-size: 1.35rem;
    }

    .service-card {
        padding: var(--spacing-2xl);
    }
}

/* --------------------------------------------------------------------------
   ACCESIBILIDAD
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para navegación con teclado */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* Skip link para accesibilidad */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text-dark);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    z-index: 9999;
    font-weight: 700;
}

.skip-link:focus {
    top: var(--spacing-sm);
}

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {

    .header,
    .sticky-bottom,
    .btn,
    .hero__ctas,
    .final-cta {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        background: none;
        padding: var(--spacing-lg);
    }
}