/* Neumáticos 24/7 — Spanish road-sign palette */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes pulse-road {
    0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.55); }
    70% { box-shadow: 0 0 0 16px rgba(196, 30, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
}

.pulse-btn { animation: pulse-road 2.2s infinite; }

/* Prominent CTA buttons */
.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.875rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}
.btn-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45);
}
.btn-phone:disabled,
.btn-phone.is-submitting {
    opacity: 0.85;
    cursor: wait;
    transform: none;
    animation: none;
    pointer-events: none;
}
@keyframes form-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.form-spin {
    animation: form-spin 1s linear infinite;
}
.lp-form input,
.lp-form textarea {
    font-size: 16px;
}
@media (min-width: 640px) {
    .lp-form input,
    .lp-form textarea {
        font-size: 0.875rem;
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.875rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.2s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.hero-wrap { position: relative; overflow: hidden; }

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, rgba(27, 42, 74, 0.94) 0%, rgba(43, 43, 43, 0.88) 52%, rgba(196, 30, 58, 0.22) 100%),
        url('../images/1.webp');
    background-size: cover;
    background-position: center;
    animation: kenburns 24s ease-out forwards;
    z-index: 0;
}

.page-hero {
    background:
        linear-gradient(rgba(27, 42, 74, 0.9), rgba(43, 43, 43, 0.92)),
        url('../images/1.webp');
    background-size: cover;
    background-position: center;
}

.cta-bg {
    background:
        linear-gradient(rgba(27, 42, 74, 0.94), rgba(43, 43, 43, 0.96)),
        url('../images/3.webp');
    background-size: cover;
    background-position: center;
}

.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(27, 42, 74, 0.14);
}

.thank-you-bg {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(145deg, #1B2A4A 0%, #2B2B2B 45%, #C41E3A 130%);
}

/* Road-sign accent stripe (optional header detail) */
.road-stripe {
    height: 4px;
    background: linear-gradient(90deg, #F4C430 0%, #F4C430 33%, #C41E3A 33%, #C41E3A 66%, #004B87 66%, #004B87 100%);
}

/* Testimonial cards — colored border + shadow */
.testimonial-card {
    border: 1px solid #E8ECEF;
    border-left-width: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
    transform: translateY(-3px);
}
.testimonial-card--red {
    border-left-color: #C41E3A;
    box-shadow: 0 4px 18px rgba(196, 30, 58, 0.18), 0 12px 28px rgba(196, 30, 58, 0.08);
}
.testimonial-card--blue {
    border-left-color: #004B87;
    box-shadow: 0 4px 18px rgba(0, 75, 135, 0.18), 0 12px 28px rgba(0, 75, 135, 0.08);
}
.testimonial-card--yellow {
    border-left-color: #F4C430;
    box-shadow: 0 4px 18px rgba(244, 196, 48, 0.22), 0 12px 28px rgba(244, 196, 48, 0.1);
}

/* Coverage area pills */
.area-pill {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.15s ease;
}
.area-pill:hover { transform: translateY(-2px); }
.area-pill--red {
    background: rgba(196, 30, 58, 0.1);
    color: #9E1830;
    border-color: rgba(196, 30, 58, 0.35);
    box-shadow: 0 3px 12px rgba(196, 30, 58, 0.15);
}
.area-pill--blue {
    background: rgba(0, 75, 135, 0.1);
    color: #004B87;
    border-color: rgba(0, 75, 135, 0.35);
    box-shadow: 0 3px 12px rgba(0, 75, 135, 0.15);
}
.area-pill--yellow {
    background: rgba(244, 196, 48, 0.18);
    color: #7a5f00;
    border-color: rgba(244, 196, 48, 0.55);
    box-shadow: 0 3px 12px rgba(244, 196, 48, 0.2);
}

/* Footer logo — visible on dark background */
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.625rem 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.footer-logo-wrap img {
    height: 3rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
    display: block;
}

/* Service detail boxes */
.dos-box {
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.35);
    border-radius: 0.75rem;
    padding: 1.25rem;
}
.donts-box {
    background: rgba(196, 30, 58, 0.06);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
}
.vs-box {
    background: rgba(0, 75, 135, 0.08);
    border: 2px solid rgba(0, 75, 135, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
}
