
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    height: 100%;
    display: flex;
    flex-direction: column;
	min-height: 100vh; 
}	
main {
    flex: 1; 
}
.cabecera {
	background-color: #004d99; 
    padding: 10px 20px;       
    display: flex;
    align-items: center; 
}
.menu-principal {
	font-family: 'Titillium Web', sans-serif;
    flex-grow: 1; 
    text-align: center; 
}
.tabla-menu {
    margin-left: auto;
    margin-right: auto;
	white-space: nowrap; 
    padding: 0 15px;    
}
.logo-contenedor {
    margin-left: 100px; 
}
.logo-imagen {
    height: 120px; 
    width: auto; 
    display: block;
}
.menu-principal a {
    color: white; 
    text-decoration: none;
    font-weight: bold;
	width: 100%; 
}
h1 {
	font-family: 'Titillium Web', sans-serif;
    text-align: center;
    color: #004d99;
    margin-top: 30px;
    margin-bottom: 20px;
}
.form-container {
	font-family: 'Titillium Web', sans-serif;
    max-width: 650px; 
    margin: 40px auto; 
    padding: 30px;
    background-color: #ffffff; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    border-top: 5px solid #007bff; 
}
button {
    font-family: 'Titillium Web', sans-serif;
    width: 100%;
	padding: 10px;
	background-color: #004d99;
	color: white;
	border:none;
	border-radius: 4px;
	cursor: pointer;
}
button:hover {
	background-color: #218838;
}
.contenedor-reservas {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 50px;
}
.tabla-estilizada {
    border-collapse: collapse;
    width: 90%;
    max-width: 1000px; 
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    border-radius: 10px;
    overflow: hidden; 
    font-family: 'Titillium Web', sans-serif;
}
.tabla-estilizada thead {
    background-color: #004d99;
    color: white;
    text-transform: uppercase;
}
.tabla-estilizada th, 
.tabla-estilizada td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.tabla-estilizada tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.tabla-estilizada tbody tr:hover {
    background-color: #f1f7ff;
    transition: 0.3s;
}
.col-clase span {
    background-color: #e1f0ff;
    color: #004d99;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}
.grid-viajes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    font-family: 'Titillium Web', sans-serif;
}
.card-viaje {
    position: relative; /* ESTA ES LA LÍNEA QUE FALTA */
    background-color: white;
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.card-viaje:hover {
    transform: translateY(-10px);
}
.contenido-card {
    padding: 20px;
    text-align: center;
}
.contenido-card h3 {
    color: #004d99;
    margin-bottom: 10px;
}
.contenido-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}
.info-precio {
    margin: 15px 0;
}
.info-precio .valor {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004d99;
    display: block;
}
.boton-viaje {
    display: inline-block;
    background-color: #004d99;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.boton-viaje:hover {
    background-color: #003366;
}
.contenedor-nosotros {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Titillium Web', sans-serif;
}
.hero-nosotros {
    text-align: center;
    padding: 60px 20px;
    background: #004d99;
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
}
.hero-nosotros h1 {
    color: white; 
}
.mision-vision {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.cuadro-info {
    flex: 1;
    background: #f1f7ff;
    padding: 30px;
    border-left: 5px solid #004d99;
    border-radius: 5px;
}
.grid-flota {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.avion-card {
    width: 45%;
    text-align: center;
}
.avion-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.titulo {
	font-family: 'Unbounded', sans-serif; 
    font-weight: 700;
    font-style: italic;	
    color: white; 
    padding: 24px 25px; 
    display: inline-block; 
    border-radius: 8px; 
    font-size: 5.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;	
}
.titulo2 {
	font-family: 'Unbounded', sans-serif; 
    font-weight: 700;
    font-style: italic;	
    text-align: center;
    color: #004d99;
    padding: 24px 25px; 
    display: inline-block; 
    border-radius: 8px; 
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-top: -20px; 	
}
.titulo3 {
	font-family: 'Unbounded', sans-serif; 
    font-weight: 700;
    font-style: italic;	
    text-align: center;
    color: #004d99;
	padding: 24px 25px;  
    border-radius: 8px; 
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    letter-spacing: -1px;
}
.subtitulo {
	font-family: 'Titillium Web', sans-serif; 
	font-size: 1.7rem; 
	color: white; 
	letter-spacing: -1px; 
	margin-top: -40px; 	
	}	
	.beneficios-seccion {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9; 
}

.contenedor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.card-beneficio {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #AED9E0; 
}
.card-beneficio:hover {
    transform: translateY(-10px); 
    border-bottom: 4px solid #B4A7D6; 
}
.icono {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.icono:hover {
    transform: translateY(-10px);
}
.card-beneficio h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #5E81AC;
}
.card-beneficio p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}
.faq-seccion {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Titillium Web', sans-serif;
}
.contenedor-faq details {
    background-color: white;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #D9D2E9; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}
.contenedor-faq summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none; 
    position: relative;
    padding-right: 25px;
}
.contenedor-faq summary::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    color: #B4A7D6;
}
.contenedor-faq details[open] {
    border: 1px solid #AED9E0; 
}
.contenedor-faq p {
    margin-top: 10px;
    color: #555;
    line-height: 1.5;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.contacto-seccion {
    padding: 80px 20px;
    text-align: center;
}
.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}
.social-card {
    text-decoration: none; 
    display: flex;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 50px; 
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.social-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.icono-social {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    width: 44px;
    height: 45px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.info-social {
    text-align: left;
}
.red-nombre {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.9rem;
    color: #333;
}
.red-usuario {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.85rem;
    color: #888;
}
.fb:hover { border: 2px solid #1877F2; }
.ig:hover { border: 2px solid #E4405F; }
.tw:hover { border: 2px solid #000000; }

.pie-pagina-total {
    width: 100%; 
    background-color: #EBEBEB; 
    padding: 25px 0; 
    border-top: 1px solid #ccc;
    position: relative;
    bottom: 0;
	margin-top: auto;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 90%; 
    margin: 0 auto; 
}
.logo-footer {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    color: #004d99;
    margin: 0;
}
.logo-footer span {
    color: #5E81AC;
}
.copy {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.8rem;
    color: #777;
    margin: 5px 0 0 0;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cert-texto {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.8rem;
    color: #777;
}
.box {
    border: 1px solid #999;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #666;
    margin-left: 5px;
}
.esquina-azul {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background-color: #004d99; 
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.franja-confianza {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    padding: 30px 0;
    background-color: #ffffff; 
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap; 
}
.item-confianza {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.item-confianza p {
	font-family: 'Unbounded', sans-serif; 
    font-size: 1.1rem;
    font-weight: 600;
    color: #5E81AC;
    margin: 0;
}
.footer-links-legales {
    margin-top: 10px;
}
.footer-links-legales a {
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-decoration: none;
}
.footer-links-legales a:hover {
    color: #5E81AC; 
    text-decoration: underline;
}
.img-icono {
    width: 100px;  
    height: 100px; 
    object-fit: contain; 
    margin-bottom: 10px;
}
.card-beneficio:hover .img-icono {
    transform: scale(1.1); 
    transition: 0.3s;
}
.reserva-vacia-contenedor {
    text-align: center;
    background-color: #fefefe;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 20px 0;
}
.ticket-img {
    width: 175px;
    height: auto;
    margin-bottom: 25px;
    margin-top: -30px;
    opacity: 0.8; 
}
.titulo-vacio {
    color: #1b2758;
    font-family: 'Titillium Web', sans-serif;
    margin-bottom: 25px;
    font-size: 1.8rem;
}
.descripcion-vacia {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.btn-agendar-vacio {
    display: inline-block;
    padding: 12px 30px;
    background-color: #004d99;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-agendar-vacio:hover {
    background-color: #003366;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn-cancelar {
    background-color: #ff4d4d;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cancelar:hover {
    background-color: #cc0000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.usuario-card {
background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 40px; 
    padding: 12px 20px; 
    flex-direction: column;
	justify-content: center;
    gap: 8px;              
	min-width: 140px;     
    transition: all 0.3s ease;

}

.usuario-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
	transform: scale(1.05);
}

.usuario-card2 {
background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 30px; 
    padding: 12px 20px; 
    flex-direction: column;


}

.usuario-card2:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
	transform: scale(1.05);
}

.nombre-bienvenida {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Titillium Web', sans-serif;
}

.boton-salir {
    background-color: #ff4d4d; 
    color: white !important;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.boton-salir:hover {
    background-color: #cc0000;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

.seccion-auth {
    padding-left: 60px !important; 
}

        .login-box {
            max-width: 400px;
            margin: 80px auto;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            text-align: center;
        }
        .input-group {
			margin-bottom: 20px; 
			text-align: left; 
			}
        .input-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .btn-login {
            width: 100%;
            padding: 12px;
            background: #1b2758;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
			background-color: #004d99;
        }
		.register-box {
            max-width: 400px;
            margin: 60px auto;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            text-align: center;
        }
        .input-group { 
		margin-bottom: 20px; 
		text-align: left; 
		}
        .input-group label { 
		display: block; 
		margin-bottom: 5px; 
		color: #1b2758; 
		font-weight: bold; 
		}
		
        .input-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box; 
        }
        .btn-registrar {
            width: 100%;
            padding: 12px;
            background: #28a745; 
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
			background-color: #004d99;
        }
        .btn-registrar:hover { background: #218838; }

.factura-wrapper {
    background-color: #f0f2f5;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.factura-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    border-top: 8px solid #004d99;
}

.factura-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.logo-area h1 {
    color: #004d99;
    margin: 0;
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.item-box {
    background: #f8faff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #004d99;
}

.item-box label {
    display: block;
    font-size: 12px;
    color: #004d99;
    text-transform: uppercase;
    font-weight: bold;
}

.item-box span {
    font-size: 16px;
    color: #1b2758;
    font-weight: 600;
}

.factura-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.factura-table th {
    text-align: left;
    padding: 12px;
    background: #f1f3f8;
    color: #004d99;
}

.factura-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.total-row {
    font-size: 20px;
    color: #004d99;
    font-weight: bold;
}

.badge-ejecutiva { font-size: 12px; }
.badge-economica { font-size: 12px; }

.no-print {
    text-align: center;
    margin-top: 50px;
}

.btn-accion {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
	margin-bottom: 50px;
    margin-top: -30px;
}

.btn-print { background: #004d99; color: white; margin-right: 10px; }
.btn-back { background: #004d99; color: white; }

@media print {
    body { background: white; }
    .factura-wrapper { padding: 0; }
    .factura-box { box-shadow: none; border: 1px solid #eee; width: 100%; }
    .no-print { display: none; }
}


.metodo-pago {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    max-width: 480px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
    font-family: 'Titillium Web', sans-serif;
}

.metodo-pago h2 {
    color: #1b2758;
    text-align: center;
    margin-bottom: 5px;
    font-size: 24px;
}

.metodo-pago p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}
.visa-master {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.visa-master img {
    height: 35px;
    filter: grayscale(20%); 
    opacity: 0.9;
    transition: transform 0.3s;
}

.visa-master img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.metodo-pago label {
    display: block;
    font-weight: bold;
    color: #1b2758;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-pago {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box; 
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-pago:focus {
    border-color: #1b2758;
    outline: none;
    box-shadow: 0 0 5px rgba(27, 39, 88, 0.2);
}

.btn-pagar {
    background: #1b2758;
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-pagar:hover {
    background: #2a3a75;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.texto-seguridad {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.badge-clase {
    padding: 5px 12px;
    border-radius: 20px; 
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
}
.clase-economica {
    background-color: #e3f2fd; 
    color: #1976d2;            
    border: 1px solid #bbdefb;
}
.clase-ejecutiva {
    background-color: #fff3e0; 
    color: #f57c00;           
    border: 1px solid #ffe0b2;
}
.contenedor-texto {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8; 
    background: #fff;
    border-radius: 10px;
}

.contenedor-texto h2 {
    color: #004d99; 
    border-left: 5px solid #004d99; 
    padding-left: 15px;
    margin-top: 30px;
}
.visa-master img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.celda-acciones {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    align-items: center;
    padding: 10px;
}

.btn-factura, .btn-cancelar {
    display: block;
    width: 90px;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-factura {
    background-color: #004d99;
    color: white;
}

.btn-factura:hover {
    transform: scale(1.05);
}
