/* Estilos específicos para la página de Renta de Autos */

/* Hero Section Renta de Autos */
.hero-rentaautos {
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(147, 51, 234, 0.8) 100%),
        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-rentaautos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.7), rgba(147, 51, 234, 0.7));
    z-index: 1;
}

.hero-rentaautos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-rentaautos h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-rentaautos p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-rentaautos .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Tipos de Vehículos */
.tipos-vehiculos {
    padding: 5rem 0;
    background: #eff6ff;
}

.tipos-vehiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tipo-vehiculo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tipo-vehiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tipo-vehiculo-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.tipo-vehiculo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tipo-vehiculo-card:hover .tipo-vehiculo-image img {
    transform: scale(1.1);
}

.tipo-vehiculo-badge {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.tipo-vehiculo-categoria {
    background: #9333ea;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.tipo-vehiculo-content {
    padding: 2rem;
}

.tipo-vehiculo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tipo-vehiculo-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tipo-vehiculo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tipo-vehiculo-feature {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tipo-vehiculo-precio {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.tipo-vehiculo-precio span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.tipo-vehiculo-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.tipo-vehiculo-capacidad {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.tipo-vehiculo-capacidad i {
    color: #9333ea;
}

/* Servicios Adicionales */
.servicios-adicionales {
    padding: 5rem 0;
    background: white;
}

.servicios-adicionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servicio-adicional-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servicio-adicional-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.servicio-adicional-card.premium {
    border-color: #9333ea;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.servicio-adicional-card.premium::before {
    content: 'PREMIUM';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #9333ea;
    color: white;
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.servicio-adicional-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.servicio-adicional-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.servicio-adicional-descripcion {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.servicio-adicional-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.servicio-adicional-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servicio-adicional-incluye li:last-child {
    border-bottom: none;
}

.servicio-adicional-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Ubicaciones de Renta */
.ubicaciones-renta {
    padding: 5rem 0;
    background: #eff6ff;
}

.ubicaciones-renta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ubicacion-renta-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ubicacion-renta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ubicacion-renta-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.ubicacion-renta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ubicacion-renta-card:hover .ubicacion-renta-image img {
    transform: scale(1.05);
}

.ubicacion-renta-vehiculos {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ubicacion-renta-content {
    padding: 1.5rem;
}

.ubicacion-renta-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.ubicacion-renta-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ubicacion-renta-servicios {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ubicacion-renta-contacto {
    color: #9333ea;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonios Renta Autos */
.testimonios-rentaautos {
    padding: 5rem 0;
    background: white;
}

.testimonios-rentaautos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-rentaautos-card {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    position: relative;
}

.testimonio-rentaautos-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.3;
}

.testimonio-rentaautos-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-rentaautos-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-rentaautos-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-rentaautos-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-rentaautos-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonio-rentaautos-vehiculo {
    color: #3b82f6;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-rentaautos {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-rentaautos h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-rentaautos p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-rentaautos .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .tipos-vehiculos-grid,
    .servicios-adicionales-grid,
    .ubicaciones-renta-grid {
        grid-template-columns: 1fr;
    }
    
    .tipo-vehiculo-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .servicio-adicional-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-rentaautos {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-rentaautos h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-rentaautos p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-rentaautos .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
} 