/* =============================== */
/* VARIABLES */
/* =============================== */
:root {
    --rojo: #d01818;
    --blanco: #ffffff;
    --negro: #111111;
    --gris: #f5f5f5;
}

/* =============================== */
/* GLOBAL */
/* =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--blanco);
    color: var(--negro);
}

/* =============================== */
/* NAVBAR */
/* =============================== */
.navbar {
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--blanco);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--rojo);
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(208, 24, 24, 0.6);
}

.nav-whatsapp {
    padding: 10px 18px;
    background: var(--rojo);
    border-radius: 6px;
    color: var(--blanco) !important;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blanco);
    display: block;
}

.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* =============================== */
/* NAVBAR RESPONSIVE */
/* =============================== */
@media (max-width: 850px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding-top: 40px;
        gap: 30px;
        transition: 0.3s;
        margin-top: 25px;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo img {
        height: 60px;
    }
}

/* =============================== */
/* HERO */
/* =============================== */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* =============================== */
/* HERO */
/* =============================== */
.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    margin: auto;
    top: 45%;
    transform: translateY(-50%);
    text-align: center;
    color: var(--blanco);
    animation: fadeUp 1s ease-out;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(0,0,0,0.5);
    padding-top: 120px;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.5;
}

/* =============================== */
/* BOTONES HERO */
/* =============================== */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--rojo);
    color: var(--blanco);
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #b31212;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(208, 24, 24, 0.45);
}

.hero-btn-sec {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 2px solid var(--rojo);
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn-sec:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* =============================== */
/* ANIMACIONES */
/* =============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(-50%); }
}

/* =============================== */
/* HERO RESPONSIVE */
/* =============================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .hero-btn, .hero-btn-sec {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}


/* =============================== */
/* SECCIÓN 1: CONOCE LO MEJOR */
/* =============================== */
.servicio {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.servicio-contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.servicio-bloque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}

.servicio-texto h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--rojo);
    margin-bottom: 15px;
}

.servicio-texto p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #333;
}

.servicio-imagen img {
    width: 420px;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 960px) {
    .servicio-bloque {
        flex-direction: column;
        text-align: center;
    }

    .servicio-imagen img {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 600px) {
    .servicio-texto h2 {
        font-size: 28px;
    }
}

/* =============================== */
/* SECCIÓN 2: ICONOS DESTACADOS */
/* =============================== */
.servicio-icons-section {
    width: 100%;
    background: var(--rojo);
    padding: 45px 0;
}

.servicio-icons {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}

.icon-box {
    text-align: center;
}

.icon-box i {
    font-size: 36px;
    margin-bottom: 8px;
}

.icon-box p {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 800px) {
    .servicio-icons {
        flex-direction: column;
        gap: 25px;
    }

    .icon-box i {
        font-size: 32px;
    }
}

/* =============================== */
/* SECCIÓN 3: EXPERIENCIA COMPLETA */
/* =============================== */
.servicio-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}

/* =============================== */
/* CUADRO DRON - NUEVO DISEÑO */
/* =============================== */
.servicio-dron {
    position: relative;
    width: 360px;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    background-image: url("media/dron.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
    transition: 0.35s ease;
    flex-shrink: 0;
}

.servicio-dron:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgba(208, 24, 24, 0.45);
}

.dron-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
}

.dron-content {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
}

.dron-txt {
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 300;
}

.dron-txt strong {
    color: #ffdfdf;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
    .servicio-extra {
        flex-direction: column;
        text-align: center;
    }

    .servicio-dron {
        width: 100%;
        height: 230px;
    }
}

/* =============================== */
/* SECCIÓN DE TOURS (GENERAL) */
/* =============================== */
.tours-section {
    width: 100%;
    padding: 100px 0;
    background: #1b1b1b;
    color: white;
}

.tours-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.tours-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}


/* =============================== */
/* PESTAÑAS DE TOURS */
/* =============================== */
.tours-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tour-tab {
    padding: 12px 20px;
    border-radius: 8px;
    background: #2b2b2b;
    border: 1px solid #444;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.tour-tab:hover {
    border-color: var(--rojo);
    color: var(--rojo);
}

.tour-tab.active {
    background: var(--rojo);
    border-color: var(--rojo);
}


/* =============================== */
/* CONTENIDO DE CADA TOUR */
/* =============================== */
.tours-content {
    background: #242424;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.tour-panel {
    display: none;
    text-align: center;
}

.tour-panel.active {
    display: block;
}

.tour-panel h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--rojo);
}

.tour-panel p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}


/* =============================== */
/* BOTÓN PRINCIPAL (WHATSAPP) */
/* =============================== */
.tour-btn {
    display: inline-block;
    background: var(--rojo);
    padding: 12px 22px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #b31212;
    transform: scale(1.05);
}


/* =============================== */
/* BOTÓN SECUNDARIO */
/* =============================== */
.tour-btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid var(--rojo);
    color: var(--rojo);
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.tour-btn-secondary:hover {
    background: var(--rojo);
    color: white;
    transform: scale(1.05);
}

/* =============================== */
/* VIBRA MAZATLECA */
/* =============================== */
.vibra-mazatleca {
    width: 100%;
    padding: 80px 0;
    background: #111;
    color: white;
    text-align: center;
}

.vibra-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.vibra-mazatleca h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: white;
}

/* Contenedor de videos */
.vibra-videos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Caja de video */
.video-box {
    width: 280px;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.35s;
}

.video-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255,255,255,0.15);
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .video-box {
        width: 80%;
        max-width: 350px;
        height: 500px;
    }
}

@media (max-width: 500px) {
    .video-box {
        width: 90%;
        height: 420px;
    }
}


/* =============================== */
/* GALERÍA DE CADA TOUR */
/* =============================== */
.tour-gallery {
    width: 100%;
    margin: 25px 0 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tour-gallery img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.tour-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}


/* =============================== */
/* LIGHTBOX */
/* =============================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255,255,255,0.25);
    animation: fadeZoom 0.3s ease;
}

@keyframes fadeZoom {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--rojo);
}


/* =============================== */
/* RESPONSIVE */
/* =============================== */
@media (max-width: 900px) {
    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tour-gallery img {
        height: 140px;
    }
}

@media (max-width: 700px) {
    .tour-panel h3 {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-gallery img {
        height: 120px;
    }
}


/* =============================== */
/* SECCIÓN GALERÍA Y CTA */
/* =============================== */
.galeria-cta {
    width: 100%;
    padding: 100px 0;
    background: #111; /* oscuro premium */
}

.galeria-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.galeria-container h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
}

/* GALERÍA GRID */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 50px;
}

.galeria-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.35);
}

.galeria-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* CTA BUTTON */
.galeria-cta-btn {
    display: inline-block;
    background: var(--rojo);
    padding: 14px 26px;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.galeria-cta-btn:hover {
    background: #b31212;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-grid img {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
    }

    .galeria-grid img {
        height: 150px;
    }
}

/* =============================== */
/* SECCIÓN GALERÍA Y CTA */
/* =============================== */
.galeria-cta {
    width: 100%;
    padding: 100px 0;
    background: #ffffff; /* ahora blanco */
}

.galeria-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.galeria-container h2 {
    font-size: 36px;
    color: #111; /* contraste con fondo blanco */
    margin-bottom: 40px;
}

/* GALERÍA GRID */
.galeria-grid img {
    box-shadow: 0 0 10px rgba(0,0,0,0.15); /* sombras más suaves en blanco */
}

.galeria-grid img:hover {
    box-shadow: 0 0 18px rgba(0,0,0,0.25);
}

/* CTA BUTTON */
.galeria-cta-btn {
    display: inline-block;
    background: var(--rojo);
    padding: 14px 26px;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.galeria-cta-btn:hover {
    background: #b31212;
    transform: scale(1.05);
}

/* =============================== */
/* FOOTER */
/* =============================== */
.footer {
    width: 100%;
    background: #111;
    color: white;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--rojo);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-ws-btn {
    display: inline-block;
    margin-top: 12px;
    background: var(--rojo);
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-ws-btn:hover {
    background: #b31212;
}

/* PARTE INFERIOR */
.footer-bottom {
    width: 100%;
    padding: 18px 0;
    text-align: center;
    background: #0b0b0b;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: var(--rojo);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-contact p i {
    margin-right: 6px;
}

.footer-social {
    margin: 12px 0 18px;
}

.footer-social a {
    font-size: 26px;
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--rojo);
}


/* =============================== */
/* FOOTER RESPONSIVE */
/* =============================== */
@media (max-width: 800px) {

    .footer-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .footer-brand p {
        margin: 0 auto;
        max-width: 260px;
    }

    .footer-links a {
        display: block;
        margin: 6px 0;
    }

    .footer-contact p {
        margin: 5px 0;
    }

    .footer-ws-btn {
        margin-top: 14px;
    }

    .footer-social {
        margin-top: 10px;
        margin-bottom: 18px;
    }
}
