
/* Animación de "Respiración" con resplandor azul */
/* Estilo base para los botones del mapa */
#pickup_map_btn, #dropoff_map_btn {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0;
    font-size: 24px; /* Tamaño del emoji */
    transition: all 0.3s ease;
}

/* Nueva animación con azul intenso */
@keyframes pulse-blue-strong {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(37, 99, 235, 0));
        color: #2563eb; 
    }
    50% {
        transform: scale(1.4); /* Crece un poco más */
        /* Sombra múltiple para crear un efecto de "neón" azul */
        filter: drop-shadow(0 0 5px #2563eb) drop-shadow(0 0 15px #2563eb);
        color: #1e40af; /* Azul más oscuro en el pico de la animación */
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(37, 99, 235, 0));
        color: #2563eb;
    }
}

.map-attention {
    display: block !important;
    animation: pulse-blue-strong 1.2s infinite ease-in-out !important;
}

/* Banner principal */
.banner {
    background-image: url('../images/banner-cuba.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 8px;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Secciones */
section {
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Títulos de sección */
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Al hacer foco en cualquier textarea */
textarea:focus {
    border-color: #3b82f6; /* azul Tailwind */
    outline: none;
}

@keyframes mapPulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 rgba(59,130,246,0); }
    30%  { transform: scale(1.4); box-shadow: 0 0 25px rgba(59,130,246,.9); }
    60%  { transform: scale(1); box-shadow: 0 0 12px rgba(59,130,246,.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(59,130,246,0); }
}

.map-attention {
    animation: mapPulse 1.2s ease-in-out infinite;
}

<style>
.filled {
    background-color: #e0f2fe;   /* azul pálido */
    border-color: #3b82f6;       /* azul Tailwind */
}
</style>

#pickup_map_btn,
#dropoff_map_btn {
    z-index: 50;
    background: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 0 0 rgba(37,99,235,0);
}

.input-locked {
    background-color: #f1f5f9 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

.map-attention {
    animation: mapPulse 1.2s ease-in-out infinite;
    color: #2563eb; /* azul Tailwind */
}

/* Tarjetas de productos */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 220px;
    transition: transform 0.2s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 10px 15px;
}

.product-info h3 {
    font-size: 1.1em;
    color: #e67e22;
    margin: 5px 0;
}

.product-info .price {
    font-weight: bold;
    margin: 5px 0;
}

.filled {
    background-color: #e0f2fe;   /* azul pálido */
    border-color: #38bdf8;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    background: #e67e22;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn:hover {
    background: #cf711f;
}

/* Íconos pequeños en títulos (opcional) */
h2::before {
    content: "";
    margin-right: 8px;
}

/* Responsive */
@media(max-width:768px) {
    .products-grid {
        justify-content: center;
    }
    .banner {
        height: 200px;
        font-size: 1.8em;
    }
}

}
        .car-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        /* Style to ensure the placeholder image fits */
        .h-48 img {
             object-fit: cover;
        }
		
		.shadow-text {
			text-shadow: 0 3px 12px rgba(0,0,0,.9);
		}

		.fleet-slide {
			position: absolute;
			inset: 0;
			opacity: 0;
			transition: opacity 1.2s ease-in-out;
		}

		.fleet-slide.active {
			opacity: 1;
		}

		.font-auto {
			font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
		}
		
				select {
			transition: all 0.25s ease;
		}
		
		select.prefilled {
			background-color: #eaf3ff !important;
			border: 2px solid #5b9dff !important;
			color: #163d7a !important;
			font-weight: 600 !important;
		}
		
		/* Estilo para que los bloques parezcan flotar */
.floating-block {
    background: #ffffff !important; /* Fuerza el fondo blanco */
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); /* Sombra suave pero profunda */
    border: 1px solid #f0f0f0; /* Un borde casi invisible para definir el borde */
    margin-bottom: 40px;
}

/* Color naranja que usamos para acentos */
.text-main-orange {
    color: #ff7a00;
}

/* Animación para llamar la atención sobre el mapa */
@keyframes pulse-blue {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(30, 64, 175, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0); }
}

.map-attention {
    animation: pulse-blue 2s infinite;
    background: #eff6ff;
    border-radius: 50%;
    padding: 2px; /* Un poquito de espacio para el brillo */
}