/* =====================
   RESET BÁSICO
===================== */
body {
    margin: 0;
    background: #ffffff;
}

/* Evita scroll de fondo mientras el menú está abierto */
body.menu-abierto {
    overflow: hidden;
    height: 100vh;
}
















/* =====================
   HEADER
===================== */
.header {
    position: fixed;
    top: -120px;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    transition: top 0.3s ease, background 0.3s ease;
    z-index: 2000;
    font-family: 'Courier New', Courier, monospace;
}

.header.activo {
    top: 0;
    background: rgb(255, 255, 255);
}









/* =====================
   HAMBURGUESA
===================== */
.hamburguesa {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}


.hamburguesa span {
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header.activo .hamburguesa span {
    background: #000000;
}

.hamburguesa.activo span {
    background: #000000;
}

/* Animación ☰ → ✕ */
.hamburguesa.activo span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburguesa.activo span:nth-child(2) {
    opacity: 0;
}
.hamburguesa.activo span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}















/* =====================
   MENÚ
===================== */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-color: #fff; /* fondo blanco */
    background-image: url('../Imagenes/chulpa.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 10px;
    gap: 0px;
    overflow: hidden;
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.8s ease;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    z-index: 1500;
}

.menu.activo {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.menu a {
    color: black;
    text-decoration: none;
    font-size: 25px;
    margin: 8px 0;
    text-align: left;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900; /* ← más gruesa */
    letter-spacing: -0.5px;

    position: relative;
    padding-left: 20px; /* espacio para el símbolo */
}

/* Estilo de línea superior en el primer enlace */
.menu a:first-child {

    border-top: 1px solid rgba(0, 0, 0, 0.199); /* color de la línea */
    padding-top: 12px;          /* separa el texto de la línea */
}


/* Efecto de flecha animada */
.menu a::before {
    content: "➤"; /* símbolo de flecha */
    display: inline-block;
    margin-right: 8px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu a:hover::before {
    transform: translateX(6px);
    opacity: 1;
}








/* =====================
   LOGO 
===================== */

/* Logo */
.logo-container {
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 3000;
    height: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;

    
}

.logo-container img {
    height: 100%;
    width: auto;
    display: block;
}

.logo-text {
    color: #000000;
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 1px;           /* más aire */
    margin-left: 2px;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 900;   /* ← más grueso */
    text-shadow:
        0.6px 0 #fff,
       -0.6px 0 #fff;
}













/*AQUI EMPIEZA LOS CONTENEDORES DE PRECIOS DENTRO DE LA ESTRUPTURA- DE AQUI HACIA ARRIBA NO TOCAR A MENOS DE QUE QUIERA MODIFICAR NAV O HEADER Y BODY*/
/* ===== CONTENEDOR DE PRECIOS ===== */
.precios-contenedor {
    display: grid;
    margin: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 88px;
    position: relative;
    z-index: 1002;
    
}

/* ===== TARJETA ===== */
.precio-card {
    background: rgba(181, 243, 11, 0.541);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 40px;
    padding: 20px;
    text-align: center;
    margin: 8px;
    

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
}

/* Hover elegante */
.precio-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(211, 226, 2, 0.45);
    
}

/* ===== TITULO ===== */
.precio-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 50px;
    color: #000000;
}

/* ===== PRECIO ===== */
.precio-card .valor {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

/* ===== BOTÓN ===== */
.precio-card button {
    background: linear-gradient(135deg, #04f84d, #00c853);
    border: none;
    border-radius: 30px;
    padding: 12px 8px;

    color: #000;
    font-size: 35px;
    font-weight: 900;
    cursor: pointer;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

    margin-top: auto;
}

/* Hover botón */
.precio-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(4,248,77,0.6);
    transform: translateY(-6px) scale(1.02);
}

/* Click */
.precio-card button:active {
    transform: scale(0.96);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
/*AQUI TERMINA LA SECCION CONTAINER*/












/*SECCCION DE PORQUE VIAJAR CON NOSOTROS*/
/*TITULO*/
.viaja-con-nosotros h4 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    color: #04f84d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viaja-con-nosotros {
    margin: 70px auto;
    padding: 40px 80px;
    max-width: 1000px;
    text-align: center;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    border-radius: 22px;

    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.viaja-con-nosotros .descripcion {
    font-size: 16px;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 35px;
}

.beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.beneficio {
    background: rgba(255,255,255,0.12);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.beneficio h5 {
    font-size: 17px;
    color: #04f84d;
    margin-bottom: 8px;
}

.beneficio p {
    font-size: 14px;
    color: #000000;
    opacity: 0.85;
}

























/* =====================
   FOOTER PROFESIONAL
===================== */
.footer {
  background: #e6e4d4; /* color tipo inDrive */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
}

.footer-brand h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 0.6;
}







/*-------------------------------------------------------------------inicio resposive PC-CELULAR---------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 480px) {
 

    /* ===== FOOTER MOBILE ===== */

    .footer {
        padding: 40px 15px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 👈 DOS COLUMNAS */
        gap: 20px;
    }

    .footer-brand {
        grid-column: span 2; /* 👈 La marca ocupa las dos columnas */
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 13px;
    }


    /* Logo */
    .logo-container {
        top: 15px;
        left: 20px; /* más pegado al borde */
        height: 28px; /* más pequeño */
    }

    .logo-text {
        font-size: 22px; /* más compacto */
        letter-spacing: 0.5px;
        text-shadow: none; /* quita ese efecto fuerte en móvil */
    }

}
