/* =========================================
   SERVICIO YA - ESTILO EMERGENCIA
   ========================================= */

:root {
    --alert-red: #e74c3c;
    --warning-yellow: #f1c40f;
    --dark: #2c3e50;
    --black: #000000;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: var(--dark);
    padding-bottom: 80px;
    /* Espacio para el footer fijo */
}

a {
    text-decoration: none;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--black);
    color: var(--warning-yellow);
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HERO --- */
.hero {
    background-color: var(--warning-yellow);
    /* Fondo amarillo llamativo */
    padding: 40px 20px;
    text-align: center;
    border-bottom: 5px solid var(--black);
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--black);
}

.logo-area h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-text {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.solution-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* BOTÓN DE PÁNICO */
.cta-container {
    margin-bottom: 20px;
}

.btn-emergency {
    background-color: var(--alert-red);
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    padding: 20px 40px;
    border-radius: 10px;
    border: 3px solid var(--black);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 0 var(--black);
    /* Sombra sólida 3D */
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-emergency:active {
    transform: translateY(5px);
    box-shadow: 0 5px 0 var(--black);
}

.click-text {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animación de latido */
.pulse {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-link a {
    color: var(--black);
    font-weight: bold;
    border-bottom: 2px solid var(--black);
}

/* --- PRECIOS --- */
.prices-section {
    padding: 40px 20px;
}

.price-box {
    background: var(--white);
    border: 2px solid #ccc;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.price-box.highlight {
    border: 3px solid var(--alert-red);
    background: #fff5f5;
    transform: scale(1.05);
}

.price-box h3 {
    font-weight: 900;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.price-box .price {
    font-family: 'Anton';
    font-size: 2.5rem;
    color: var(--dark);
}

.price-box p {
    font-size: 0.9rem;
    color: #666;
}

/* --- LISTA DE SERVICIOS --- */
.services-list {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 20px;
}

.services-list h2 {
    font-family: 'Anton';
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.services-list ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.services-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.services-list i {
    color: var(--warning-yellow);
}

/* --- MAPA / COBERTURA --- */
.map-section {
    text-align: center;
    padding: 40px 20px;
}

.map-icon {
    font-size: 3rem;
    color: var(--alert-red);
    margin-bottom: 10px;
}

.map-section h3 {
    font-weight: 900;
    font-size: 1.5rem;
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
    color: #555;
}

/* --- FOOTER FIJO (STICKY) --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 70px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.btn-sticky {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
}

.btn-sticky.call {
    background-color: var(--alert-red);
}

.btn-sticky.wa {
    background-color: #25D366;
}

/* Responsive */
@media (min-width: 768px) {
    .prices-section .container {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .price-box {
        flex: 1;
        max-width: 300px;
    }
}