/* ===============================
   PANEL 1 - FONDO ANIMADO VISIBLE
=================================*/
#panel1 {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: linear-gradient(
        -45deg,
        #0f2027,
        #1b3c59,
        #4cc9f0,
        #1b3c59
    );
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* Animación suave y elegante */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contenido encima */
#panel1 .container {
    position: relative;
    z-index: 2;
}


/* ===============================
   VIDEO - BORDE PREMIUM
=================================*/

.video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(135deg, #4cc9f0, #27496d);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(0, 150, 255, 0.4);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 14px;
}

/* ===============================
   EXPERIENCE BOX
=================================*/

.experience-box {
    background: linear-gradient(135deg, #4cc9f0, #1b3c59);
    border-radius: 14px;
    margin-top: 5px;
    padding: 18px;
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.experience-box:hover {
    transform: translateY(-5px);
}

.experience-box h3 {
    color: #ffffff;
    font-weight: 600;
}

/* ===============================
   TEXTOS
=================================*/

.section-subtitle {
    color: #4cc9f0;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    color: #ffffff;
    font-weight: 700;
}

.section-text {
    color: #d9e6f2;
    line-height: 1.8;
}

/* ===============================
   QUOTE SECTION - WHITE STYLE
=================================*/

#quote-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}
/******/
.menu-box {
    background-color: #ffffff !important;
    position: relative;
    padding: 120px 0;
    min-height: 500px;
    border-top: 4px solid #4cc9f0;
    border-bottom: 4px solid #4cc9f0;
}


/* Fondo diagonal */
.menu-box::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: #4cc9f0;
    transform: rotate(45deg);
    opacity: 0.05;
}

.paquetes-bg {
    position: relative;
    background-image: url("../img/machu-bg.png"); /* 🔥 tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* EFECTO SCROLL */
    padding: 120px 0;
}

/* Capa oscura elegante */
.paquetes-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Para que el contenido quede encima */
.paquetes-bg .container {
    position: relative;
    z-index: 2;
}

.paquetes-bg {
    position: relative;
    background-image: url("../img/machu-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
    color: white;
}

/* Capa oscura elegante pero sin tapar contenido */
.paquetes-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* 🔥 CLAVE: subir el contenido encima del overlay */
.paquetes-bg .container,
.paquetes-bg .row,
.paquetes-bg .col-lg-12,
.paquetes-bg #galeria {
    position: relative;
    z-index: 2;
}

/* Título más visible */
.paquetes-bg h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* Span decorativo */
.paquetes-bg h1 span {
    color: #00c6ff;
}

/* Párrafo más legible */
#textop{
    color: #ffffff !important;
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 850px;
    margin: 25px auto 0 auto;
    font-weight: 400;
    text-align: center;
    
    /* 🔥 Esto hace que se vea más claro sobre la imagen */
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 30px;
    border-radius: 10px;
    
    /* sombra suave al texto */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
