:root {
    --primary-color: #061520;
    --secondary-color: #044D6E;
    --accent-color: #00d2ff;
    --light-color: #f0f8ff;
    --dark-color: #0a2d5a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* Desktop (transparente hasta hacer scroll) */
@media (min-width: 992px) { /* Bootstrap's lg breakpoint */
  .navbar {
    background-color: transparent !important;
  }
  .navbar.scrolled {
    background-color: #0A2D5A !important;
  }
}

/* Móvil/Tablet (siempre con color #0A2D5A) */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #0A2D5A !important;
  }
}

/* Texto blanco SIEMPRE (en todos los dispositivos) */
.navbar-brand,
.navbar-nav .nav-link,
.navbar-toggler-icon {
  color: white !important;
}

/* Color del botón toggler en móvil (Bootstrap) */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Banner principal */
.hero-banner {
    background-image: url("https://srv1970-files.hstgr.io/17961f6c3a4d0ec0/files/public_html/img/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-bottom: 30px;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 30px;
    margin-right: 15px;
}

.btn-primary:hover {
    background-color: #2a6bc4;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    border: none;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 30px;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
}

/* Formulario de búsqueda */
.search-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary-color);
}

.form-control, .form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(58, 123, 213, 0.25);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Sección de servicios */
.services-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Sección de destinos populares */
.destinations-section {
    padding: 60px 0;
    background-color: white;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 1px solid #e1e8ed;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.2);
}

.destination-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-info {
    padding: 20px;
}

.price-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Testimonios */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Newsletter */
.bg-light {
    background-color: var(--light-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-banner {
        height: auto;
        padding: 100px 0;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .search-form {
        padding: 20px;
    }
}


























    


        /* Estilos generales para la página de rutas */
.rutas-container {
    padding-top: 55px;
}

/* Banner Superior con Imagen de Autobús - Mejorado */
.hero-rutas {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-rutas:hover .hero-image {
    transform: scale(1.05);
}

.route-search-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.route-search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.route-search-form .form-group {
    margin-bottom: 1.5rem;
}

.route-search-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.route-search-form .form-control,
.route-search-form .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.route-search-form .form-control:focus,
.route-search-form .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.search-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.popular-routes {
    margin-top: 2rem;
}

.popular-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.route-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.route-tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    border-color: #3498db;
}

/* Nueva Sección de Rutas - Diseño Moderno */
.routes-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.route-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.route-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.route-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.route-item:hover .route-image img {
    transform: scale(1.1);
}

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.route-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.route-cities {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.route-from, .route-to {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.route-arrow {
    margin: 0 10px;
    color: #3498db;
    font-size: 1.2rem;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.route-duration, .route-price {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.route-duration i, .route-price i {
    margin-right: 8px;
    color: #3498db;
}

.route-price {
    font-weight: 600;
}

.route-price span {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-left: 5px;
}

.route-features {
    margin-bottom: 1.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: #f1f8fe;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

.route-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.route-companies {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.3s;
}

.company-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.route-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
}

.route-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Comparador de Rutas - Rediseñado */
.comparison-section {
    padding: 5rem 0;
    background: white;
}

.comparison-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.comparison-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.comparison-route {
    font-weight: 700;
    color: #2c3e50;
}

.comparison-price {
    font-weight: 700;
    color: #e74c3c;
}

.comparison-duration {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comparison-duration i {
    margin-right: 8px;
    color: #3498db;
}

.comparison-features {
    margin-bottom: 1.5rem;
}

.comparison-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comparison-feature i {
    width: 24px;
    height: 24px;
    background: #f1f8fe;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

.comparison-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-btn {
    padding: 8px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.comparison-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Beneficios - Rediseñado */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-text {
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .hero-rutas {
        height: 550px;
    }
}

@media (max-width: 991.98px) {
    .hero-rutas {
        height: auto;
        padding: 100px 0;
    }
    
    .route-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .route-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .route-companies {
        margin-bottom: 1rem;
    }
    
    .route-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-rutas {
        padding: 80px 0;
    }
    
    .route-search-container {
        padding: 1.5rem;
    }
    
    .route-search-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .route-grid {
        grid-template-columns: 1fr;
    }
}   














/* Estilos para la página de promociones */
.promociones-container {
    padding-top: 55px;
}

/* Hero Banner */
.promo-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.promo-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.promo-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.promo-hero:hover .promo-hero-image {
    transform: scale(1.05);
}

.promo-hero-text {
    max-width: 600px;
}

.promo-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-countdown {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}

.countdown-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Sección de Promociones Destacadas */
.featured-promos {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.promo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.promo-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.promo-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.promo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.promo-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.promo-old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #95a5a6;
    margin-right: 5px;
}

.promo-expiry {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.promo-expiry i {
    margin-right: 8px;
    color: #e74c3c;
}

.promo-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.promo-terms {
    font-size: 0.8rem;
    color: #95a5a6;
}

.promo-btn {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    transition: all 0.3s;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Sección de Newsletter */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.newsletter-submit {
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-submit:hover {
    background: #c0392b;
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .promo-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .promo-hero {
        height: auto;
        padding: 100px 0;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-submit {
        border-radius: 8px;
    }
}

@media (max-width: 575.98px) {
    .promo-hero {
        padding: 80px 0;
    }
    
    .promo-hero-title {
        font-size: 2rem;
    }
    
    .promo-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
}




















/* Estilos para la página de contacto */
.contacto-container {
    padding-top: 57px;
}

/* Hero Banner */
.contact-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.contact-hero:hover .contact-hero-image {
    transform: scale(1.05);
}

.contact-hero-text {
    max-width: 600px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Sección de Contacto */
.contact-section {
    padding: 0 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-card-text {
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2980b9;
}

/* Formulario de Contacto */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 10px;
    font-size: 0.9rem;
    color: #7f8c8d;
    z-index: 1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    background: transparent;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Mapa */
.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .contact-hero {
        height: auto;
        padding: 100px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 767.98px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-card {
        flex: 1 1 100%;
    }
}

























/* Estilos para la página de reserva */
.reserva-container {
    padding-top: 55px;
}

/* Hero Banner */
.reserva-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    overflow: hidden;
    margin-bottom: 50px;
}

.reserva-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.reserva-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.reserva-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reserva-hero-text {
    max-width: 800px;
}

.reserva-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reserva-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Proceso de Reserva */
.reserva-process {
    padding: 3rem 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 100%;
    width: 3rem;
    height: 2px;
    background: #e0e0e0;
}

.step:last-child::after {
    display: none;
}

/* Formulario de Reserva */
.reserva-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.date-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.btn-next {
    padding: 12px 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Selección de Asientos */
.asientos-section {
    display: none;
}

.asientos-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.bus-diagram {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 12px;
    padding: 2rem;
}

.asientos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.asiento {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 2px solid #ddd;
}

.asiento:hover {
    background: #e0e0e0;
}

.asiento.selected {
    background: #2ecc71;
    color: white;
    border-color: #27ae60;
}

.asiento.pasillo {
    visibility: hidden;
}

.asiento::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7f8c8d;
}

.asiento.selected::before {
    background: white;
}

.asiento-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.asiento-info {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
}

.info-icon.disponible {
    background: #f5f5f5;
    color: #2c3e50;
}

.info-icon.selected {
    background: #2ecc71;
}

/* Resumen de Reserva */
.resumen-section {
    display: none;
}

.resumen-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.resumen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resumen-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
}

.resumen-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.resumen-label {
    color: #7f8c8d;
}

.resumen-value {
    font-weight: 600;
    color: #2c3e50;
}

.resumen-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.btn-confirmar {
    padding: 15px 40px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* Responsividad */
@media (max-width: 1199.98px) {
    .reserva-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .reserva-hero {
        height: auto;
        padding: 100px 0;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .step {
        margin: 0 0.8rem;
    }
    
    .step::after {
        width: 1.5rem;
    }
    
    .asiento-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575.98px) {
    .reserva-hero {
        padding: 80px 0;
    }
    
    .reserva-hero-title {
        font-size: 2rem;
    }
    
    .reserva-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        margin: 0 0.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step::after {
        top: 20px;
        width: 1rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .asientos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .asiento {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .asiento-label {
        font-size: 0.7rem;
        bottom: -20px;
    }
}





















