/* =========================================================
   VARIABLES GLOBALES
========================================================= */
*{
    font-family: 'Montserrat', sans-serif;
}
:root{
    --primary-color:#0d2d60;
    --secondary-color:#e8913a;
    --background-color:#ffffff;
    --text-color:#111111;

}

/* =========================================================
   RESET
========================================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    body{
    font-family:'Montserrat', sans-serif;
}
    background:var(--background-color);
    color:var(--text-color);
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* =========================================================
   NAVBAR
========================================================= */
.menu_bar{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    background:var(--primary-color);

    border-bottom:1px solid rgba(255,255,255,0.08);

    z-index:9999;
}

.logo img{
    width:240px;
}

/* =========================================================
   MENU DESKTOP
========================================================= */
#menu{
    display:flex;
    align-items:center;
    gap:10px;
}

#menu > li{
    position:relative;
}

#menu > li > a{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    font-size:15px;
    font-weight:500;

    color:white;

    border-radius:12px;

    transition:0.3s ease;
}

#menu > li > a:hover{
    background:rgba(255,255,255,0.08);
    color:var(--secondary-color);
}

/* =========================================================
   ELEGANT MEGA MENU
========================================================= */

@media(min-width:951px){
    .highlight{
    color:#e8913a;
}
    /* NAVBAR */
    .menu_bar{
        position:relative;

        display:flex;

        align-items:center;

        justify-content:space-between;

        padding:0 50px;

        z-index:1000;
    }

    /* MENU PRINCIPAL */
    #menu{
        display:flex;

        align-items:center;

        gap:10px;
    }

    #menu li{
        position:static;

        list-style:none;
    }

    /* LINKS DEL NAV */
    #menu > li > a{
        display:flex;

        align-items:center;

        gap:8px;

        padding:30px 18px;

        font-size:14px;

        font-weight:600;

        color:white;

        text-decoration:none;

        transition:0.3s ease;

        position:relative;
    }

    /* LINEA ELEGANTE */
    #menu > li > a::after{
        content:"";

        position:absolute;

        bottom:18px;

        left:18px;

        width:0;

        height:2px;

        background:#e8913a;

        transition:0.35s ease;
    }

    #menu > li:hover > a::after{
        width:calc(100% - 36px);
    }

    #menu > li:hover > a{
        color:#e8913a;
    }

    /* =========================================================
       MEGA MENU
    ========================================================= */
    .dropdown_menu{
        position:absolute;

        top:100%;

        left:50%;

        transform:translateX(-50%) translateY(20px);

        width:92%;

        max-width:1400px;

        background:#0d2d60;

        border-radius:24px;

        padding:45px 50px;

        box-sizing:border-box;

        display:flex;

        justify-content:space-between;

        align-items:flex-start;

        gap:50px;

        opacity:0;

        visibility:hidden;

        transition:0.35s ease;

        box-shadow:
        0 25px 60px rgba(254, 254, 254, 0.18);

        z-index:999;
    }

    /* MOSTRAR MENU */
    .has-dropdown:hover .dropdown_menu{
        opacity:1;

        visibility:visible;

        transform:translateX(-50%) translateY(0);
    }

    /* COLUMNAS */
    .mega-column{
        flex:1;

        min-width:220px;
    }

    /* TITULOS */
    .mega-column h4{
        color:#e8913a;

        font-size:16px;

        letter-spacing:1px;

        margin-bottom:22px;

        font-weight:700;

        text-transform:uppercase;
    }

    /* LINKS */
    .mega-column a{
        display:block;

        padding:13px 0;

        color:white;

        font-size:14px;

        line-height:1.6;

        text-decoration:none;

        border-bottom:1px solid rgba(232,145,58,0.18);

        transition:0.3s ease;
    }

    .mega-column a:hover{
        color:#e8913a;

        padding-left:10px;
    }

    /* ICONO */
    #menu i{
        font-size:12px;

        transition:0.3s ease;
    }

    .has-dropdown:hover i{
        transform:rotate(180deg);
    }

    /* BOTONES IDIOMA */
    .language-switch{
        display:flex;

        gap:10px;
    }

    .lang-btn{
        border:none;

        background:transparent;

        cursor:pointer;

        transition:0.3s ease;
    }

    .lang-btn:hover{
        transform:scale(1.08);
    }

    .lang-btn img{
        width:24px;

        height:24px;

        border-radius:50%;
    }
}

/* EVITA SCROLL HORIZONTAL */
body{
    overflow-x:hidden;
    color: #e7e7e7; 
}
/* =========================================================
   HAMBURGUESA
========================================================= */
.menu-toggle{
    width:34px;
    height:24px;

    display:none;

    position:relative;

    cursor:pointer;

    z-index:10001;
    
}
@media(max-width:950px){

    .mega-column h4{
        color:#e8913a;
    }

}
#menu > li > a{
        color:white;
    }
.menu-toggle span{
    position:absolute;
    left:0;

    width:100%;
    height:3px;

    background:white;

    border-radius:20px;

    transition:0.3s ease;
}

.menu-toggle span:nth-child(1){
    top:0;
}

.menu-toggle span:nth-child(2){
    top:10px;
}

.menu-toggle span:nth-child(3){
    top:20px;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}

/* =========================================================
   HERO
========================================================= */
#hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

#hero video{
    position:absolute;
    top:50%;
    left:50%;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);
}

.overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.35);
}

.hero-content{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:20px;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;

    color:white;

    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;

    max-width:700px;

    color:rgba(255,255,255,0.9);

    margin-bottom:30px;
}

/* =========================================================
   BOTONES
========================================================= */
.btn,
.about-btn,
.tour-btn,
.footer-btn{
    transition:0.3s ease;
}

.btn{
    display:inline-block;

    padding:4px 10px;

    background:var(--secondary-color);

    color:white;

    border-radius:40px;

    font-weight:600;
}

.btn:hover{
    transform:translateY(-3px);
    background:#cf7b28;
}

/* =========================================================
   ABOUT
========================================================= */
.about{
    background:#ffffff;
    padding:20px 20px;
}

.about-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.section-subtitle{
    display:block;

    color:var(--secondary-color);

    font-size:15px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.about h2{
    font-size:45px;
    line-height:1.3;

    color:var(--primary-color);

    margin-bottom:25px;
}

.about p{
    font-size:17px;
    color:#555;
}

.about-btn{
    display:inline-block;

    margin-top:35px;

    padding:14px 28px;

    background:var(--secondary-color);

    color:white;

    border-radius:40px;
}

/* =========================================================
   DESTINATIONS
========================================================= */
.destinations{
    background:#f7f7f7;
    padding:100px 20px;
}

.destinations-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.destinations h2{
    font-size:45px;
    line-height:1.3;

    color:var(--primary-color);

    margin-bottom:25px;
}

.destinations p{
    font-size:17px;
    color:#555;
}

/* =========================================================
   TOURS
========================================================= */
.tours{
    background:#ffffff;
    padding:20px 20px;
}

.tours-container{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.tour-card{
    background:white;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(0,0,0,0.06);

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.tour-card:hover{
    transform:translateY(-8px);
}

.tour-card img{
    width:100%;
    height:240px;

    object-fit:cover;
}

.tour-content{
    padding:25px;
}

.tour-content h3{
    font-size:28px;

    color:var(--primary-color);

    margin-bottom:15px;
}

.tour-content p{
    color:#555;

    margin-bottom:25px;
}

.tour-info{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    margin-bottom:25px;
}

.tour-details{
    display:flex;
    flex-direction:column;
    gap:10px;

    color:#555;
}

.tour-details span{
    display:flex;
    align-items:center;
    gap:10px;
}

.tour-details i{
    color:var(--secondary-color);
}

.tour-price{
    font-size:30px;
    font-weight:700;

    color:var(--secondary-color);
}

.tour-btn{
    display:block;

    text-align:center;

    padding:14px;

    border-radius:14px;

    background:var(--primary-color);

    color:white;

    font-weight:600;
}

.tour-btn:hover{
    background:var(--secondary-color);
}

/* =========================================================
   FOOTER MEJORADO
========================================================= */

.footer{
    background: var(--primary-color);
    padding-top: 80px;
    color: #fff;
}

/* CONTENEDOR */
.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 30px 60px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

/* TITULOS */
.footer-column h3{
    font-size:18px;
    color:#fff;
    margin-bottom:25px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background: var(--secondary-color);
    border-radius:10px;
}

/* LOGO */
.footer-brand img{
    width: 160px;
    margin-bottom:25px;
}

/* CONTACTO */
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
}

.footer-contact i{
    color: var(--secondary-color);
}

/* LISTAS */
.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#fff;
    opacity:0.85;
    transition:0.3s ease;
    font-size:14px;
}

.footer-column ul li a:hover{
    opacity:1;
    color: var(--secondary-color);
    padding-left:6px;
}

/* BOTON */
.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;
    margin-top:15px;

    background: var(--secondary-color);
    color:#fff;

    border-radius:10px;
    font-weight:600;

    transition:0.3s ease;
}

.footer-btn:hover{
    transform:translateY(-3px);
}

/* ================= BOTTOM ================= */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 30px;

    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-bottom-logo img{
    width:100px;
}

.footer-bottom-logo p{
    color:rgba(255,255,255,0.75);
    font-size:13px;
}

/* REDES */
.footer-socials{
    display:flex;
    gap:12px;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);

    color:#fff;

    transition:0.3s ease;
}

.footer-socials a:hover{
    background: var(--secondary-color);
    transform:translateY(-3px);
}
.footer-btn{
    margin-top:25px; /* antes estaba más arriba, ahora baja un poco */
}
.footer-contact-box small{
    display:block;
    margin-top:6px;
    opacity:0.8;
    font-size:12px;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:950px){
    
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact{
        align-items:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-logo{
        flex-direction:column;
    }

    .footer-socials{
        justify-content:center;
        flex-wrap:wrap;
    }
    .footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-brand img{
    margin:0 auto;
}
.footer-brand{
    align-items:center;
    justify-content:center;
}
}

/* =========================================================
   WHATSAPP
========================================================= */
.whatsapp-float{
    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25d366;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    color:white;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,0.25);

    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:950px){

    .menu-toggle{
        display:block;
    }

    #menu{
        position:fixed;

        top:80px;
        left:-100%;

        width:100%;
        height:calc(100vh - 80px);

        background:var(--primary-color);

        flex-direction:column;
        align-items:stretch;

        gap:12px;

        padding:20px;

        overflow-y:auto;

        transition:left 0.4s ease;
    }

    #menu.active{
        left:0;
    }

    #menu > li{
        width:100%;

        display:flex;
        flex-direction:column;
    }

    #menu > li > a{
        width:100%;

        justify-content:space-between;

        padding:18px 20px;

        background:rgba(255,255,255,0.05);

        border-radius:14px;

        font-size:16px;
    }

    .dropdown_menu{
        position:relative;

        display:none;

        width:100%;

        margin-top:8px;

        background:rgba(255,255,255,0.05);

        border-radius:14px;

        overflow:hidden;
    }

    .has-dropdown.active .dropdown_menu{
        display:block;
    }

    .dropdown_menu ul{
        display:flex;
        flex-direction:column;
    }

    .dropdown_menu a{
        display:block;

        width:100%;

        padding:15px 20px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about,
    .destinations,
    .tours{
        padding:20px 20px;
    }

    .about h2,
    .destinations h2{
        font-size:32px;
    }

    .tour-content h3{
        font-size:24px;
    }

    .tour-info{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-container{
        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact{
        align-items:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-logo{
        flex-direction:column;
    }

    .footer-socials{
        justify-content:center;
        flex-wrap:wrap;
    }
}
.tours-intro{
    background:#ffffff;
    padding:70px 10px 10px;
}

.tours-intro-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.tours-intro h2{
    font-size:42px;
    color:var(--primary-color);
    margin-bottom:20px;
    line-height:1.2;
}

.tours-intro p{
    font-size:17px;
    color:#555;
    max-width:850px;
    margin:auto;
    line-height:1.7;
}
.features{
    background:#ffffff;
    padding:20px 20px;
}

.features-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* CARD */
.feature-card{
    background:white;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    border:1px solid rgba(0,0,0,0.05);

    transition:0.3s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
}

/* ICONO */
.feature-card i{
    font-size:40px;
    color:var(--secondary-color);
    margin-bottom:15px;
}

/* TITULO */
.feature-card h3{
    font-size:20px;
    color:var(--primary-color);
    margin-bottom:10px;
}

/* TEXTO */
.feature-card p{
    font-size:14px;
    color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){

    .feature-card{
        padding:30px 20px;
    }

    .feature-card h3{
        font-size:18px;
    }
}
.language-switch{

    display:flex;
    align-items:center;

    gap:12px;

    margin-left:25px;
}

.lang-btn{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    overflow:hidden;

    cursor:pointer;

    padding:0;

    background:none;

    transition:0.3s ease;

    border:2px solid transparent;
}

.lang-btn img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;
}

/* ACTIVO */

.lang-btn.active{

    border-color:var(--secondary-color);

    box-shadow:0 0 15px rgba(232,145,58,0.4);

    transform:scale(1.08);
}

/* HOVER */

.lang-btn:hover{

    transform:translateY(-2px) scale(1.08);
}
/* =========================================================================
   ESTILOS CSS: SECCIÓN SEGURIDAD Y CONFIANZA
   ========================================================================= */

/* Importación de fuente y librería de iconos por si tu web no las tiene */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Contenedor envolvente principal */
.vseg-main-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.vseg-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Subtítulo naranja (arriba) */
.vseg-subtitle-top {
    color: #e68a33 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    margin: 0 0 15px 0 !important;
}

/* Gran título azul */
.vseg-main-title {
    color: #0c3866 !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 auto 25px auto !important;
    max-width: 900px !important;
}

/* Párrafo central */
.vseg-description {
    color: #666666 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 850px !important;
    margin: 0 auto 35px auto !important;
    font-weight: 400 !important;
}

/* Botón Naranja Estilo Llamada a la Acción */
.vseg-cta-button {
    display: inline-block !important;
    background-color: #e68a33 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 15px 35px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(230, 138, 51, 0.3) !important;
    margin-bottom: 60px !important;
}

.vseg-cta-button:hover {
    background-color: #cf7524 !important;
    transform: translateY(-2px) !important;
}

/* Estructura Grid de tres columnas para tarjetas */
.vseg-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    padding: 10px 0 !important;
    box-sizing: border-box !important;
}

/* Diseño individual de las tarjetas */
.vseg-card-item {
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 35px 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.vseg-card-item:hover {
    transform: translateY(-5px) !important;
}

/* Iconos de las tarjetas */
.vseg-card-icon {
    color: #e68a33 !important;
    font-size: 35px !important;
    margin-bottom: 20px !important;
}

/* Títulos de las tarjetas */
.vseg-card-title {
    color: #0c3866 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
}

/* Enlaces / Subtextos de las tarjetas */
.vseg-card-link {
    color: #888888 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.vseg-card-link:hover {
    color: #e68a33 !important;
}

/* Adaptación Responsiva para Celulares y Tablets */
@media (max-width: 768px) {
    .vseg-main-title {
        font-size: 30px !important;
    }
    .vseg-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .vseg-cta-button {
        margin-bottom: 40px !important;
    }
}