/* Variables de color para cambiar fácil */
:root {
    --taxi-yellow: #FFD700; /* Amarillo clásico */
    --taxi-black: #222;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--text-color);
    padding-bottom: 60px; /* Espacio para el botón flotante */
}

/* Encabezado */
#main-header {
    background-image: url("TAXI.jpg"); 
    background-size: cover;
    background-position: center;
    height: 80vh; /* Un poco menos de altura para ver contenido antes */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
} 

#main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Un poco más oscuro para leer mejor */
    z-index: 1;
} 

.header-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BOTÓN PRINCIPAL MEJORADO */
.btn {
    background-color: var(--taxi-yellow);
    color: var(--taxi-black);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s;
}

.btn:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}

/* Contenido */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    color: var(--taxi-black);
    border-bottom: 3px solid var(--taxi-yellow);
    display: inline-block;
    padding-bottom: 5px;
}

.services-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.big-phone {
    font-size: 2rem;
    font-weight: bold;
    color: var(--taxi-black);
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

footer {
    background-color: var(--taxi-black);
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* BOTÓN FLOTANTE (STICKY) - CRUCIAL PARA MÓVIL */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Verde tipo WhatsApp o llamada */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ajustes para móvil */
@media (max-width: 600px) {
    .header-content h1 { font-size: 2.5rem; }
    .sticky-btn { 
        width: 80%; 
        left: 10%; 
        justify-content: center;
        bottom: 15px;
    }
}