/* ===== RESET Y ESTILOS GLOBALES ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background: #ffffff;
}

/* ===== NAVBAR ELEGANTE ===== */

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 8%;
background: #111;
position: sticky;
top: 0;
z-index: 999;
border-bottom: 1px solid rgba(227, 30, 36, 0.2);
}

/* Logo MÁS GRANDE */
.logo {
height: 65px;  /* Aumentado de 50px a 65px */
width: auto;
transition: transform 0.3s ease;
}

.logo:hover {
transform: scale(1.02);
}

/* Contenedor derecho (menú + redes) */
.nav-right {
display: flex;
align-items: center;
gap: 30px;
}

/* Menú principal */
.menu {
display: flex;
list-style: none;
gap: 35px;
align-items: center;
}

.menu a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
position: relative;
padding: 5px 0;
font-size: 15px;
}

/* Línea inferior animada */
.menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #e31e24;
transition: width 0.3s ease;
}

.menu a:hover {
color: #e31e24;
}

.menu a:hover::after {
width: 100%;
}

/* Botón especial del menú */
.btn-nav {
background: #e31e24;
padding: 10px 22px !important;
border-radius: 30px;
transition: all 0.3s !important;
font-weight: 600 !important;
}

.btn-nav:hover {
background: #b71c1c;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.btn-nav::after {
display: none !important;
}

/* Redes Sociales - Estilo Ultra Elegante */
.social-icons {
display: flex;
gap: 12px;
align-items: center;
}

.social-icon {
color: rgba(255, 255, 255, 0.7);
font-size: 18px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efecto de brillo sutil */
.social-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 50%;
background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 70%);
opacity: 0;
transition: opacity 0.3s;
z-index: 1;
}

.social-icon i {
position: relative;
z-index: 2;
}

.social-icon:hover {
color: #e31e24;
background: rgba(227, 30, 36, 0.1);
transform: translateY(-3px);
border-color: rgba(227, 30, 36, 0.3);
box-shadow: 0 5px 12px rgba(227, 30, 36, 0.25);
}

.social-icon:hover::before {
opacity: 1;
}

/* ===== MENÚ HAMBURGUESA (solo visible en móvil) ===== */

.hamburger-menu {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 24px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1000;
}

.hamburger-line {
width: 100%;
height: 3px;
background: white;
border-radius: 10px;
transition: all 0.3s ease;
}

/* Animación del botón hamburguesa cuando está activo */
.hamburger-menu.active .hamburger-line:nth-child(1) {
transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
transform: translateY(-11px) rotate(-45deg);
}

/* Menú móvil desplegable */
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(17, 17, 17, 0.98);
backdrop-filter: blur(10px);
z-index: 998;
padding-top: 100px;
transform: translateX(-100%);
transition: transform 0.4s ease;
}

.mobile-menu.active {
transform: translateX(0);
}

.mobile-menu-list {
list-style: none;
padding: 0 30px;
}

.mobile-menu-list li {
margin-bottom: 25px;
opacity: 0;
transform: translateY(20px);
transition: all 0.4s ease;
transition-delay: calc(0.1s * var(--i, 0));
}

.mobile-menu.active .mobile-menu-list li {
opacity: 1;
transform: translateY(0);
}

.mobile-menu-list li:nth-child(1) { --i: 1; }
.mobile-menu-list li:nth-child(2) { --i: 2; }
.mobile-menu-list li:nth-child(3) { --i: 3; }
.mobile-menu-list li:nth-child(4) { --i: 4; }
.mobile-menu-list li:nth-child(5) { --i: 5; }

.mobile-menu-list a {
color: white;
text-decoration: none;
font-size: 24px;
font-weight: 600;
transition: color 0.3s;
display: inline-block;
}

.mobile-menu-list a:hover {
color: #e31e24;
transform: translateX(10px);
}

.mobile-btn-nav {
background: #e31e24;
padding: 12px 30px !important;
border-radius: 40px;
font-size: 20px !important;
}

.mobile-social {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 50px;
padding: 0 30px;
}

.mobile-social-icon {
color: white;
font-size: 28px;
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s;
}

.mobile-social-icon:hover {
background: #e31e24;
transform: translateY(-5px);
}

/* ===== SLIDER PRINCIPAL ===== */

.slider {
position: relative;
height: 85vh;
overflow: hidden;
}

.slide {
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: 1.2s ease;
}

.slide.active {
opacity: 1;
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(227, 30, 36, 0.45));
}

.content {
position: absolute;
top: 50%;
left: 10%;
transform: translateY(-50%);
color: white;
max-width: 600px;
z-index: 2;
}

.content h1 {
font-size: 60px;
font-weight: 700;
line-height: 1.2;
}

.content p {
font-size: 22px;
margin: 20px 0;
opacity: 0.9;
}

.btn-slider {
background: #e31e24;
padding: 14px 34px;
color: white;
text-decoration: none;
border-radius: 40px;
font-weight: 600;
transition: 0.3s;
display: inline-block;
}

.btn-slider:hover {
background: #b71c1c;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

/* ===== SECCIÓN: PREPÁRATE PARA VIAJAR ===== */

.travel-prep {
padding: 80px 8%;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
text-align: center;
}

.section-title {
font-size: 42px;
font-weight: 700;
color: #111;
margin-bottom: 10px;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #e31e24;
border-radius: 2px;
}

.section-subtitle {
font-size: 18px;
color: #666;
margin-bottom: 50px;
font-weight: 300;
}

.cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
max-width: 1300px;
margin: 0 auto;
}

.travel-card {
background: white;
padding: 35px 20px;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
transition: all 0.4s ease;
text-align: center;
border: 1px solid rgba(227, 30, 36, 0.1);
position: relative;
overflow: hidden;
}

.travel-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: #e31e24;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.travel-card:hover::before {
transform: scaleX(1);
}

.travel-card:hover {
transform: translateY(-15px);
box-shadow: 0 25px 45px rgba(227, 30, 36, 0.15);
border-color: transparent;
}

.card-icon {
font-size: 48px;
margin-bottom: 20px;
display: inline-block;
background: rgba(227, 30, 36, 0.05);
width: 90px;
height: 90px;
line-height: 90px;
border-radius: 50%;
transition: 0.4s;
}

.travel-card:hover .card-icon {
background: #e31e24;
color: white;
transform: rotate(360deg);
}

.travel-card h3 {
font-size: 20px;
font-weight: 600;
color: #111;
margin-bottom: 12px;
}

.travel-card p {
font-size: 15px;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}

.card-link {
color: #e31e24;
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-block;
position: relative;
padding-bottom: 3px;
}

.card-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #e31e24;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s;
}

.card-link:hover::after {
transform: scaleX(1);
transform-origin: left;
}

/* ===== MINI SLIDER DE NOTICIAS ===== */

.news-slider-section {
padding: 60px 8%;
background: #ffffff;
text-align: center;
}

.mini-slider-container {
position: relative;
max-width: 900px;
margin: 0 auto;
overflow: hidden;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mini-slider {
position: relative;
height: 400px;
}

.mini-slide {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease;
display: flex;
flex-direction: column;
}

.mini-slide.active-mini {
opacity: 1;
z-index: 1;
}

.mini-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.mini-slide-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 30px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
color: white;
text-align: left;
}

.mini-slide-content h3 {
font-size: 24px;
margin-bottom: 8px;
}

.mini-slide-content p {
font-size: 16px;
margin-bottom: 15px;
opacity: 0.9;
}

.mini-btn {
background: #e31e24;
color: white;
padding: 8px 20px;
border-radius: 30px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
display: inline-block;
transition: 0.3s;
}

.mini-btn:hover {
background: #b71c1c;
transform: translateY(-2px);
}

.mini-slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(5px);
border: none;
border-radius: 50%;
color: white;
font-size: 20px;
cursor: pointer;
z-index: 10;
transition: 0.3s;
}

.mini-slider-btn:hover {
background: #e31e24;
}

.mini-prev {
left: 15px;
}

.mini-next {
right: 15px;
}

.mini-dots {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 10;
}

.mini-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: 0.3s;
}

.mini-dot.active-dot {
background: #e31e24;
transform: scale(1.2);
}

/* ===== SECCIÓN NOVEDADES ===== */

.novedades-section {
padding: 80px 8%;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
text-align: center;
}

.novedades-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.novedad-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
}

.novedad-card:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 0 30px 45px rgba(227, 30, 36, 0.2);
}

.novedad-img {
position: relative;
height: 220px;
overflow: hidden;
}

.novedad-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}

.novedad-card:hover .novedad-img img {
transform: scale(1.1);
}

.novedad-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(227, 30, 36, 0.3), transparent);
}

.novedad-badge {
position: absolute;
top: 15px;
right: 15px;
background: #e31e24;
color: white;
padding: 5px 15px;
border-radius: 30px;
font-size: 12px;
font-weight: 600;
z-index: 2;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

.novedad-content {
padding: 25px 20px;
text-align: left;
}

.novedad-content h3 {
font-size: 20px;
font-weight: 600;
color: #111;
margin-bottom: 10px;
}

.novedad-content p {
font-size: 14px;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.novedad-footer {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid #eee;
padding-top: 15px;
}

.novedad-fecha {
font-size: 13px;
color: #888;
}

.novedad-link {
color: #e31e24;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: 0.3s;
}

.novedad-link:hover {
transform: translateX(5px);
display: inline-block;
}

/* ===== SECCIÓN ENTIDADES Y ESTADÍSTICAS ===== */

.trust-stats-section {
padding: 80px 8%;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
color: white;
}

.trust-stats-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1300px;
margin: 0 auto;
}

.trust-side,
.stats-side {
padding: 40px 30px;
background: rgba(255, 255, 255, 0.03);
border-radius: 30px;
backdrop-filter: blur(10px);
border: 1px solid rgba(227, 30, 36, 0.2);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trust-title {
font-size: 28px;
font-weight: 600;
margin-bottom: 30px;
text-align: center;
color: white;
position: relative;
}

.trust-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: #e31e24;
border-radius: 2px;
}

.trust-grid,
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.trust-card,
.stat-card {
background: rgba(255, 255, 255, 0.05);
padding: 25px 15px;
border-radius: 20px;
text-align: center;
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.02);
}

.trust-card:hover,
.stat-card:hover {
transform: translateY(-10px);
background: rgba(227, 30, 36, 0.1);
border-color: rgba(227, 30, 36, 0.3);
}

.trust-icon,
.stat-icon {
font-size: 40px;
margin-bottom: 15px;
color: #e31e24;
}

.trust-card h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: white;
}

.trust-card p {
font-size: 12px;
color: #ccc;
line-height: 1.4;
}

.stat-number {
font-size: 36px;
font-weight: 700;
color: #e31e24;
margin-bottom: 5px;
line-height: 1.2;
}

.stat-card p {
font-size: 14px;
color: #ddd;
}

/* ===== FOOTER ===== */

footer {
background: #0a0a0a;
color: #bbb;
text-align: center;
padding: 60px 20px;
border-top: 1px solid rgba(227, 30, 36, 0.2);
}

footer img {
width: 130px;
margin-bottom: 20px;
opacity: 0.9;
transition: opacity 0.3s;
}

footer img:hover {
opacity: 1;
}

.copy {
margin-top: 20px;
font-size: 14px;
color: #777;
}

/* ===== WHATSAPP FLOTANTE ===== */

.whatsapp {
position: fixed;
bottom: 30px;
right: 30px;
width: 65px;
height: 65px;
border-radius: 50%;
background: #25D366;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 32px;
text-decoration: none;
box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
transition: all 0.3s;
z-index: 100;
}

.whatsapp:hover {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
.cards-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.novedades-grid {
grid-template-columns: repeat(2, 1fr);
}

.section-title {
font-size: 36px;
}

.mini-slider {
height: 350px;
}

.trust-stats-container {
grid-template-columns: 1fr;
gap: 30px;
}

.trust-grid,
.stats-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 900px) {
/* Ocultar menú de escritorio y mostrar hamburguesa */
.menu,
.nav-right .social-icons {
display: none;
}

.hamburger-menu {
display: flex;
}

.mobile-menu {
display: block;
}

.logo {
height: 55px; /* Un poco más pequeño en móvil pero aún visible */
}

.navbar {
padding: 12px 5%;
}

.content h1 {
font-size: 40px;
}

.novedades-grid {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}

.mini-slider {
height: 300px;
}

.mini-slide-content h3 {
font-size: 20px;
}

.mini-slide-content p {
font-size: 14px;
}
}

@media (max-width: 700px) {
.trust-grid,
.stats-grid {
grid-template-columns: 1fr;
gap: 15px;
}

.trust-side,
.stats-side {
padding: 30px 20px;
}

.trust-title {
font-size: 24px;
}

.stat-number {
font-size: 30px;
}
}

@media (max-width: 600px) {
.navbar {
padding: 12px 4%;
}

.logo {
height: 48px; /* Ajustado para móvil */
}

.travel-prep,
.news-slider-section,
.novedades-section,
.trust-stats-section {
padding: 60px 5%;
}

.section-title {
font-size: 28px;
}

.cards-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.content {
left: 5%;
right: 5%;
}

.content h1 {
font-size: 32px;
}

.content p {
font-size: 16px;
}

.btn-slider {
padding: 12px 25px;
font-size: 14px;
}

.mini-slider {
height: 250px;
}

.mini-slide-content {
padding: 20px;
}

.mini-slide-content h3 {
font-size: 18px;
}

.mini-slider-btn {
width: 35px;
height: 35px;
font-size: 16px;
}

.whatsapp {
width: 55px;
height: 55px;
font-size: 28px;
bottom: 20px;
right: 20px;
}

.mobile-menu-list a {
font-size: 20px;
}

.mobile-btn-nav {
font-size: 18px !important;
padding: 10px 25px !important;
}

.mobile-social-icon {
width: 50px;
height: 50px;
font-size: 24px;
}
}