/* =========================================================
    STYLES BASE (SIN RESPONSIVE)
    Contiene todas las reglas, animaciones y efectos.
========================================================= */

/* --------------------------- RESET / BODY --------------------------- */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* --------------------------- NAVBAR / LOGO / NAV LINKS --------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.459);
    backdrop-filter: blur(10px);
    height: 105px;
    z-index: 1000;
    margin-top: -0.5px;
    padding-left: 7rem;
    border: 1px solid rgba(6, 183, 228, 0.377);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo a la izquierda, nav al centro-derecha */
}

.logo-mini1 {
    width: 12%;
    height: auto;
    max-height: 60px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(83, 177, 214, 0.705);
    border-radius: 10vh;
    padding: 0.5rem;
    max-width: 12%;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex: 1; /* Ocupa el espacio disponible */
}

.nav-item a {
    text-decoration: none;
    color: white;
    text-shadow: 0 2px 1px rgb(87, 215, 238);
    padding: 0.5rem 1rem;
    font-weight: bold;
    background-color: rgba(24, 165, 170, 0.315);
    border: 1px solid rgb(0, 247, 255);
    box-shadow: -4px -4px 5px rgba(0, 195, 255, 0.637);
    border-radius: 14%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background-color: rgba(12, 171, 211, 0.651);
    box-shadow: -4px -4px 8px rgba(0, 195, 255, 0.829);
}

.indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 100px;
    background: #04e2ff;
    transition: 0.3s ease;
    
}

/* --------------------------- PANELS / CONTAINERS --------------------------- */
.panel {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    
}

.panel-dinamica {
    position: relative;
    background-color: #061818dc;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* altura del navbar */
}

.content1 {
    background-color: rgba(53, 175, 223, 0.514);
    border: 5px solid rgba(192, 219, 221, 0.432);
    box-shadow: 0 43px 81px rgb(7, 66, 94);
    border-radius: 14px;
    width: 96%;
    height: 93%;
}

/* --------------------------- BACKGROUND LAYERS / ANIMACIONES --------------------------- */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.7;
    animation: mover 10s infinite alternate ease-in-out;
}

.capa1 {
    background-image: url('img/t1.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.capa2 {
    background-image: url('img/t2.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}

@keyframes mover {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(50px);
    }
}

/* --------------------------- HERO / SERVICES / CONTACT --------------------------- */
.panel-hero {
    background: url('img/hero.jpg') center no-repeat fixed;
    background-size: contain;
    min-height: 10vh;
    padding-top: 50px;
    height: 100%;
    width: 100%;
    background-size: 70% auto;
    margin-top: 0rem;
}

.panel-services {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('img/services.png') center no-repeat fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.panel-contact {
    background: url('img/contact1.jpg') center no-repeat fixed;
    min-height: 10vh;
    background-color: #ffffff;
    padding-top: 50px;
    background-size: 100% auto;
}

/* --------------------------- SLIDER / ROTATOR --------------------------- */
.slider {
    position: absolute;
    top: 20%;
    right: 14%;
    width: 660px;
    height: 780px;
    perspective: 1400px;
    overflow: hidden;
    transform: rotateX(3deg) rotateY(-1deg);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    opacity: 1;
}

.text-rotator {
    position: relative;
    font-size: 3.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fffffff5;
    text-shadow: 1px 5px 16px #00eafffd, 1px 4px 10px #00fffff3;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Orbitron', sans-serif;
    animation: glowPulse 3s infinite alternate;
    border: 1px solid rgba(73, 243, 243, 0.966);
    border-radius: 10px;
    background-color: #01141444;
    width: 22%;
    padding-left: 4.5rem;
    text-align: center;
    box-shadow: -18px -10px 5px rgba(24, 153, 170, 0.315);
    margin-top: 4rem;
    transform: rotateX(3deg) rotateY(-70deg);
    margin-left: -9.6rem;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px #00ffdd;
    }
    to {
        text-shadow: 0 0 25px #00fff2ef;
    }
}

.word {
    position: absolute;
    opacity: 0;
    animation: rotateWords 9s linear infinite 0s;
}

@keyframes rotateWords {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    5% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    35% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
    }
}

.word:nth-child(1) {
    animation-delay: 0s;
}

.word:nth-child(2) {
    animation-delay: 3s;
}

.word:nth-child(3) {
    animation-delay: 6s;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateZ(-200px) scale(0.95);
    transition: all 1.3s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(52, 228, 228, 0.918);
    filter: brightness(1.28) contrast(1.25) saturate(1.22);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.8s ease, filter 0.8s ease, opacity 1s ease;
    border: 3px solid rgba(117, 237, 245, 0.787);
}

.slide.active {
    opacity: 1;
    transform: translateZ(0) scale(1.02);
    filter: brightness(1.35) contrast(1.28) saturate(1.25);
}

/* --------------------------- PROMO TEXT --------------------------- */
.promo-text {
    position: absolute;
    top: 55%;
    left: 11%;
    transform: translateY(-50%);
    max-width: 120%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
    color: #fff;
    text-align: left;
    animation: glowPulse 3s infinite alternate;
}

.promo-tag {
    font-size: 1rem;
    color: #00ffff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.promo-title span {
    color: #00ffff;
}

.promo-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

.promo-btn {
    display: inline-block;
    background: #00eaff;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 0 10px #00eaff, 0 0 30px #00eaff50;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px #00eaffe5, 0 0 30px #00eaff50;
    }
    50% {
        box-shadow: 0 0 20px #00ffffc7, 0 0 60px #00ffff80;
    }
    100% {
        box-shadow: 0 0 10px #00eaffbb, 0 0 30px #00eaff50;
    }
}

.promo-btn:hover {
    background: #00ffff;
    box-shadow: 0 0 25px #00eaff, 0 0 60px #00eaff70;
    transform: scale(1.05);
}

/* --------------------------- CONTACT SECTION --------------------------- */
.content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    width: 90%;
    height: 89%;
    max-width: 100%;
    margin: 2rem auto;
    box-shadow: -3px 4px 6px rgba(41, 38, 38, 0.144);
    margin-top: -1rem;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    height: 90%;
    margin-top: -2rem;
}

.contact-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    font-size: 15px;
    color: #000408;
}

.conth2 {
    font-size: 2.1rem;
    padding-top: -9rem;
    color: rgb(12, 12, 105);
    text-shadow: 0 1px 1px rgb(4, 221, 250);
    margin-left: -2.4rem;
}

.conth3 {
    margin-top: 1rem;
    width: 105%;
    height: 100%;
    font-size: 1.1rem;
    margin-left: -5rem;
}

.contact-right {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-benefits {
    margin-left: -4rem;
    margin-top: -1rem;
    line-height: 1.8rem;
    list-style: none;
    font-size: 1rem;
    width: 100%;
    height: 100%;
}

.contact-img1,
.contact-img2 {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.contact-img:hover {
    transform: scale(1.05);
}

.contact-btn {
    align-self: flex-start;
    padding: 0.8rem 1.6rem;
    background: #424347;
    color: white;
    text-shadow: 1px 1px 1px rgb(45, 255, 3);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
    margin-top: -1rem;
    margin-left: 10rem;
    border: 1px solid rgb(45, 255, 3);
}

.contact-btn:hover {
    background: #050505;
    border: 1px solid rgb(100, 255, 69);
}

/* --------------------------- SERVICES / ANIMATIONS --------------------------- */
.panel-services {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #111;
    overflow: hidden;
    perspective: 1000px;
}

.service-block,
.floating-center {
    position: absolute;
    padding: 10px;
    background: linear-gradient(to bottom, #ffffff81 0%, #b8bac957 100%);
    color: rgb(0, 0, 0);
    text-shadow: 0 1px 1px rgb(174, 174, 248);
    font-size: 0.65rem;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(30, 228, 235, 0.568);
    opacity: 0;
    line-height: 1.2;
    border: 0.5px solid rgba(7, 78, 231, 0.192);
}

.service-block {
    width: 120px;
    width: 13%;
    font-size: 1.4rem;
}

.service-block:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.iconos_servicive {
    margin-top: -34rem;
    margin-left: -68rem;
    font-size: 0.8rem;
}

.service-block:nth-child(2) {
    top: 15%;
    left: 15%;
}

.service-block:nth-child(3) {
    top: 15%;
    right: 13%;
}

.service-block:nth-child(4) {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.service-block:nth-child(5) {
    bottom: 32%;
    left: 15%;
}

.service-block:nth-child(6) {
    bottom: 32%;
    right: 15%;
}

.service-block:nth-child(7) {
    top: 69%;
    left: 51%;
    transform: translateX(-50%);
}

.floating-center {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 29%;
    text-align: center;
    background: #867e7e0e;
    color: rgb(63, 60, 60);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(33, 212, 228, 0.87);
    z-index: 20;
    opacity: 0;
}

.floating-center h2 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.2;
    text-shadow: 0 1px 1px rgba(13, 241, 222, 0.637);
}

.floating-center p {
    font-size: 0.7rem;
    line-height: 1.3;
}

/* Typewriter cursor */
.typewriter::after {
    content: "|";
    animation: blink 0.8s infinite;
    text-shadow: 2px 2px 2px rgb(29, 46, 162);
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Loading container (Lottie) */
.loading-lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    height: 60%;
}

/* --------------------------- SORTEO / NEON BUTTON --------------------------- */
.sorteo-section {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    align-items: center;
    
}
.certificado{
    width: 100%;
}
.content2 {
    margin-top: -19rem;
    margin-left: 2rem;
    background-color: #0077ff0c;
    border-radius: 2%;
}

.content2 h1 {
    color: rgb(81, 87, 88);
}

.content2 p {
    color: rgb(114, 124, 126);
    font-size: 1.4rem;
}

.sorteo-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    max-height: 1%;
    margin: 0 auto;
    padding: 60px 5%;
    flex-wrap: nowrap;
}

.sorteo-info {
    flex: 1 1 55%;
    min-width: 0;
}

.sorteo-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #8e9294;
    text-shadow: 0 2px 1px rgb(11, 149, 173);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: -3rem;
    margin-left: 2rem;
    width: 100%;
}

.sorteo-highlight {
  font-size: 2rem;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 2px 8px rgba(4, 74, 77, 0.973);
  font-weight: bold;
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
  border: 1px solid rgb(151, 226, 255);
}

.sorteo-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text-dark, #444);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.952);
    box-shadow: 0 21px 71px rgb(211, 230, 227);
    padding: 2rem;
    text-align: justify;
    border-radius: 2%;
    width: 150%;
    margin-left: -10rem;
}

.sorteo-description1 {
    font-size: 1.4rem;
    line-height: 1.8;
     color: #fff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    background-color: rgba(26, 24, 24, 0.842);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
    padding: 1rem;
    text-align: justify;
    border-radius: 8px;
    border: 1px solid rgb(151, 226, 255);
    width: 150%;
    margin-left: -10rem;
    box-sizing: border-box !important;
    
    
}

.sorteo-imagen {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sorteo-imagen img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: block;
    transition: transform 0.3s ease;
    margin-left: 35rem;
}

.sorteo-imagen img:hover {
    transform: scale(1.02);
}

/* Neon glow button */
#neonShadow {
    display: inline-block;
    min-width: 220px;
    max-width: 280px;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgb(47, 194, 252);
    background-color: rgba(15, 15, 15, 0.911);
    color: rgb(255, 255, 255);
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 2px rgba(0, 47, 255, 0.808);
    font-weight: 600;
    transition: all 0.3s ease;
    animation: glow 1.5s infinite;
    cursor: pointer;
    line-height: 1.2;
    margin: 0;
    margin-left: 4rem;
    margin-top: 1rem;
}

#neonShadow:hover {
    transform: translateX(-10px) rotate(5deg);
    border-radius: 50px;
    border: 1px solid rgba(9, 133, 19, 0.233);
    background-color: #ffffffe8;
    animation-play-state: paused;
    color: #000000;
    text-shadow: 0 2px 2px rgb(73, 220, 240);
}

#neonShadow:active {
    transform: translateX(-5px) rotate(2deg) scale(0.98);
}

@keyframes glow {
    0% {
        box-shadow: 5px 5px 20px rgba(3, 158, 42, 0.671), -5px -5px 20px rgba(58, 17, 241, 0.753);
    }
    50% {
        box-shadow: 5px 5px 20px rgb(206, 84, 14), -5px -5px 20px rgba(81, 224, 210, 0.63);
    }
    100% {
        box-shadow: 5px 5px 20px rgba(41, 1, 39, 0.411), -5px -5px 20px rgba(185, 78, 6, 0.726);
    }
}

/* --------------------------- INSTAGRAM / WIDGET / LAYOUT --------------------------- */
.instagram-section {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 5%;
    background-color: #fff;
}

.instagram-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: nowrap;
    min-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.instagram-info-box {
    flex: 1;
    min-width: 50%;
    padding: 60px 25px 25px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.info-logo {
    margin-top: 3px;
    margin-bottom: 15px;
    width: 45%;
    margin-left: 20rem;
}

.info-title {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-description {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.7rem;
    text-align: start;
    width: 100%;
    padding-top: 3rem;
}

.instagram-widget-container {
    flex: 1;
    margin-left: 15rem;
    box-sizing: border-box;
    padding: 1rem;
    overflow: hidden;
    min-width: 200%;
    margin-left: -20rem;
}

.info-button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    margin-left: -198rem;
    margin-right: 0;
}

.instagram-widget-wrapper {
    min-width: 200% !important;
    text-align: center;
    margin-left: 26.8rem;
}

.descp{
    color: rgb(4, 196, 255);
    
}

/* --------------------------- VALORES / MEDIDORES CIRCULARES --------------------------- */
.valores-botones {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 10.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding: 20px 10px;
    padding-bottom: 10px;
    scrollbar-width: none;
    margin-top: 1rem;
}

.valores-botones::-webkit-scrollbar {
    display: none;
}

.valor-medidor {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 100px;
    padding: 5px;
}

.medidor-circular {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e0e0e0;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.agua {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, #007bff, #00c6ff);
    transition: height 2s ease;
}

.porcentaje {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: bold;
    color: rgb(24, 52, 83);
    z-index: 2;
}

.valor-label {
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #94aaad;
    text-shadow: 1px 1px rgba(107, 205, 223, 0.781);
    text-align: center;
    white-space: nowrap;
}

/* --------------------------- SOCIAL ICONS --------------------------- */
.social-icons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 9.5rem;
    margin-left: -64rem;
}

.social-icons li {
    list-style: none;
    position: relative;
    cursor: pointer;
}

.social-icons li a {
    text-decoration: none;
}

.social-icons li a .fa-brands {
    font-size: 3em;
    color: #222;
    transition: opacity 0.3s ease;
}

.social-icons li a::before {
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3em;
    height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.social-icons li:nth-child(1) a::before {
    content: "\f16d";
    background-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid #dc2743;
}

.social-icons li:nth-child(2) a::before {
    content: "\f232";
    color: #25D366;
    border-bottom: 3px solid #25D366;
}

.social-icons li:nth-child(3) a::before {
    content: "\f099";
    color: #1DA1F2;
    border-bottom: 3px solid #1DA1F2;
}

.social-icons li:hover a::before {
    height: 100%;
}

/* --------------------------- UBICACION / MAP / GALLERY --------------------------- */
.ubicacion-section {
    position: relative;
    padding: 80px 20px;
    background: #f9f9f9;
    z-index: 1;
    margin-left: -30rem;
}

.section-titleu {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: rgb(12, 12, 105);
    text-shadow: 0 1px 1px rgb(4, 221, 250);
}

.map-container {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 5rem;
}

/* === NUEVO SLIDER DERECHA === */
.slider-derecha {
  position: absolute;
  top: 23%;
  right: 7%;
  width: 380px;
  height: 480px;
  perspective: 1200px;
  overflow: hidden;
  transform: rotateX(3deg) rotateY(-1deg);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
 
}

/* === SLIDES === */
.slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateZ(-200px) scale(0.92);
  transition: all 1.3s ease-in-out;
}

.slide-item.active {
  opacity: 1;
  transform: translateZ(0) scale(1.02);
  filter: brightness(1.35) contrast(-0.20) saturate(-0.10);
}

/* === IMÁGENES === */
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(52, 228, 228, 0.918);
  filter: brightness(1.28) contrast(-0.20) saturate(-0.10);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: 3px solid rgba(117, 237, 245, 0.787);
  transition: transform 0.8s ease, filter 0.8s ease, opacity 1s ease;
}

/* --------------------------- FAQ SECTION --------------------------- */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #0b1a1a 30%, #1a2a2a 80%);
    color: #f3f3f3;
    padding: 100px 8%;
    overflow: hidden;
}

.faq-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}

.faq-left {
    width: 60%;
    z-index: 2;
}

.faq-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 10rem;
    margin-top: 0.1rem;
}

.faq-grid {
    display: flex;
    gap: 40px;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid rgb(65, 173, 192);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-right {
    width: 40%;
    background: url("img/faq-bg.png") center/cover no-repeat;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 90px 90px 90px;
    box-shadow: -4px 10px 17px rgba(11, 179, 208, 0.13);
    filter: brightness(0.8);
}

/* --------------------------- FOOTER --------------------------- */
.footer {
    background: linear-gradient(180deg, #0a0a0a, #111);
    color: #e5e5e5;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-values {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.footer-values li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-values li i {
    color: #00ffff;
    font-size: 1.2rem;
}

.footer-values li:hover {
    color: #00ffff;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* --------------------------- WHATSAPP FLOAT BUTTON --------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #1ddf64;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #38d476;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
}

/* --------------------------- VARIABLES CSS (fallbacks para el base file) --------------------------- */
:root {
    --color-primary: #062342;
    --color-primary-dark: #073e79;
    --color-hero-bg: #6c757d;
    --color-text-dark: #444;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --border-radius: 12px;
    --max-width-content: 1400px;
}

/* =========================================================
    FIN: STYLES BASE
========================================================= */