/* Estilos específicos para la página de Hoteles */

/* Hero Section Hoteles */
.hero-hoteles {
    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-1566073771259-6a8506099945?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-hoteles::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-hoteles-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: slideInUp 1s ease-out;
}

.hero-hoteles 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-hoteles p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-hoteles .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

/* Categorías Hoteles */
.categorias-hoteles {
    padding: 5rem 0;
    background: #f8fafc;
}

.categorias-hoteles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.categoria-hotel-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;
}

.categoria-hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.categoria-hotel-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.categoria-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.categoria-hotel-card:hover .categoria-hotel-image img {
    transform: scale(1.1);
}

.categoria-hotel-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;
}

.categoria-hotel-content {
    padding: 2rem;
}

.categoria-hotel-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.categoria-hotel-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.categoria-hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.categoria-hotel-feature {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.categoria-hotel-precio {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.categoria-hotel-precio span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.categoria-hotel-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.categoria-hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.categoria-hotel-rating i {
    color: #f59e0b;
}

.categoria-hotel-rating span {
    font-weight: 600;
    color: #1f2937;
}

/* Servicios Hoteles */
.servicios-hoteles {
    padding: 5rem 0;
    background: white;
}

.servicios-hoteles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servicio-hotel-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-hotel-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.servicio-hotel-card.featured {
    border-color: #9333ea;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
}

.servicio-hotel-card.featured::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-hotel-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.servicio-hotel-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.servicio-hotel-descripcion {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.servicio-hotel-incluye {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.servicio-hotel-incluye li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servicio-hotel-incluye li:last-child {
    border-bottom: none;
}

.servicio-hotel-incluye i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Destinos Populares */
.destinos-hoteles {
    padding: 5rem 0;
    background: #f8fafc;
}

.destinos-hoteles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destino-hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destino-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.destino-hotel-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.destino-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destino-hotel-card:hover .destino-hotel-image img {
    transform: scale(1.05);
}

.destino-hotel-content {
    padding: 1.5rem;
}

.destino-hotel-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.destino-hotel-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.destino-hotel-hoteles {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destino-hotel-precio {
    font-size: 1.3rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

/* Testimonios Hoteles */
.testimonios-hoteles {
    padding: 5rem 0;
    background: white;
}

.testimonios-hoteles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio-hotel-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    position: relative;
}

.testimonio-hotel-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.3;
}

.testimonio-hotel-texto {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonio-hotel-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-hotel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-hotel-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.testimonio-hotel-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonio-hotel-hotel {
    color: #3b82f6;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-hoteles {
        height: 70vh;
        margin-top: 100px;
        padding: 2rem 1rem;
    }
    
    .hero-hoteles h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-hoteles p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-hoteles .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem 0.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .categorias-hoteles-grid,
    .servicios-hoteles-grid,
    .destinos-hoteles-grid {
        grid-template-columns: 1fr;
    }
    
    .categoria-hotel-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .servicio-hotel-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-hoteles {
        height: 75vh;
        margin-top: 90px;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-hoteles h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-hoteles p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-hoteles .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 80%;
        max-width: 250px;
    }
}

/* Modal Hoteles */
.hotel-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.hotel-modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.hotel-modal-header {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.hotel-modal-close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.hotel-modal-close:hover {
    color: #e5e7eb;
}

.hotel-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hotel-modal-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.hotel-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hotel-modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-modal-description {
    color: #374151;
    line-height: 1.6;
}

.hotel-modal-features h4,
.hotel-modal-amenities h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hotel-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-modal-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.hotel-modal-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.amenities-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.amenities-grid i {
    color: #3b82f6;
}

.hotel-modal-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-stars i {
    color: #f59e0b;
}

.rating-stars span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.hotel-modal-price {
    text-align: right;
}

.hotel-modal-price span {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.hotel-modal-price small {
    color: #6b7280;
    margin-left: 0.5rem;
}

.hotel-modal-footer {
    background: #f9fafb;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .hotel-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .hotel-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .hotel-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .hotel-modal-body {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .hotel-modal-image {
        height: 250px;
    }
    
    .hotel-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hotel-modal-content {
        margin: 10% auto;
        width: 98%;
    }
    
    .hotel-modal-header {
        padding: 1rem;
    }
    
    .hotel-modal-body {
        padding: 1rem;
    }
    
    .hotel-modal-price span {
        font-size: 1.5rem;
    }
} 