/* ==========================================================================
   ESTILOS BASE - CGE Genesis (Dark Neon / Glassmorphism)
   Unifica toda la interfaz del index.php y mejora centrado de elementos
   Versión mejorada: dock siempre visible, sin sombras azules, slider centrado
   ========================================================================== */

/* ------------------------------------
   Reset y configuración global
------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Lato', sans-serif;
    font-size: 1rem;
    color: #F0F4FA;
    line-height: 1.6;
    background-color: #03060C;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Tipografía mejorada */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    font-weight: 400;
    color: #D1D9F0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #13b1cd;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
a:hover {
    color: #2acee8;
    text-decoration: underline;
}

::selection {
    color: #fff;
    background: #13b1cd;
    text-shadow: none;
}

/* ------------------------------------
   FONDO ANIMADO (slider mixto)
------------------------------------ */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 30% 10%, #0A121F, #010101);
}
.bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity;
}
.bg-slide.active { opacity: 1; z-index: 2; }
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.bg-video.active { opacity: 1; z-index: 2; }
.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3;
    pointer-events: none;
}

/* ------------------------------------
   CONTENIDO PRINCIPAL (escritorio)
------------------------------------ */
.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 5px 50px 5px;
    min-height: 100vh;
    pointer-events: auto;
}

/* ------------------------------------
   CARRUSEL DE BOTONES (Swiper) - CENTRADO
------------------------------------ */
.main-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    pointer-events: auto;
}
.vehicles-slider {
    width: 100%;
    padding: 20px 0 50px;
    overflow: hidden;
}
.vehicles-slider .swiper-wrapper {
    align-items: center;
}
.vehicles-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Botones del carrusel (sin sombra azul) */
.nav-button-carousel {
    pointer-events: auto;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    width: min(380px, 80vw);
    height: auto;
    aspect-ratio: 1/1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards, floatCarousel 4s infinite ease-in-out;
}
.nav-button-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), filter 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}
.nav-button-carousel:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}
.nav-button-carousel:hover {
    animation-play-state: paused;
}
@keyframes floatCarousel {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Paginación y flechas Swiper */
.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 10px;
    pointer-events: auto;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #13b1cd;
    opacity: 1;
    transform: scale(1.2);
}
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #13b1cd;
    background: rgba(0,0,0,0.6);
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev { display: none; }
    .main-slider-container { padding: 20px 15px; }
    .nav-button-carousel { width: min(320px, 85vw); }
}

/* ------------------------------------
   BOTÓN FLOTANTE Y CONTROLES INFERIORES (SIEMPRE VISIBLES)
------------------------------------ */
.float-modal-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(19,177,205,0.6);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: #13b1cd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.float-modal-btn:hover {
    background: #13b1cd;
    color: #0A0F1A;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(19,177,205,0.8);
}

.bottom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 18px;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    padding: 12px 28px;
    border-radius: 80px;
    border: 1px solid rgba(19,177,205,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: auto;
}
.control-btn {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.control-btn:hover {
    background: #13b1cd;
    border-color: #13b1cd;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(19,177,205,0.6);
    color: #0A0F1A;
}

/* ------------------------------------
   MODALES (contenido actual e info)
------------------------------------ */
.modal-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 12000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(12px); }
}
.modal-fullscreen.active { display: flex; }
.modal-fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-media-container {
    position: relative;
    width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.modal-media-container img,
.modal-media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.modal-video-controls {
    margin-top: 15px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
}
.modal-video-controls button {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}
.modal-video-controls button:hover {
    background: #13b1cd;
    color: #fff;
    transform: scale(1.1);
}
.modal-video-controls input[type="range"] {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    outline: none;
}
.modal-video-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #13b1cd;
    border-radius: 50%;
    cursor: pointer;
}
.modal-close {
    position: absolute;
    top: -50px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.modal-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 13000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.info-modal.active { display: flex; }
.info-modal-content {
    background: rgba(20,20,30,0.95);
    border-radius: 16px;
    max-width: 680px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(19,177,205,0.3);
    transform: scale(0.95);
    animation: modalContentPop 0.3s ease forwards;
}
@keyframes modalContentPop {
    to { transform: scale(1); }
}
.info-modal-content img.logo {
    width: 180px;
    margin-bottom: 25px;
}
.info-modal-content h2 {
    color: #13b1cd;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.info-modal-content h3 {
    color: #13b1cd;
    margin-top: 30px;
    font-size: 1.4rem;
}
.info-modal-content p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: justify;
}
.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}
.info-modal-close:hover {
    background: #c54041;
    transform: scale(1.1) rotate(90deg);
}

/* ==========================================================================
   SECCIONES DE LA LANDING PAGE (mejoradas con componentes Unify)
   ========================================================================== */
.landing-page {
    background: linear-gradient(135deg, #0a0a0f 0%, #14141a 100%);
    color: #fff;
    padding: 80px 5% 100px;
    position: relative;
    z-index: 20;
}
.landing-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Animación de entrada para todas las secciones */
.landing-hero,
.about-cge,
.s-promo-block,
.s-plan,
.s-process,
.s-team,
.landing-stats,
.landing-testimonials,
.landing-cta,
.parallax-section {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFadeUp 0.8s ease forwards;
}
.landing-hero { animation-delay: 0.1s; }
.about-cge { animation-delay: 0.2s; }
.s-promo-block { animation-delay: 0.25s; }
.s-plan { animation-delay: 0.3s; }
.s-process { animation-delay: 0.35s; }
.s-team { animation-delay: 0.4s; }
.landing-stats { animation-delay: 0.45s; }
.landing-testimonials { animation-delay: 0.5s; }
.landing-cta { animation-delay: 0.6s; }
.parallax-section { animation-delay: 0.15s; }
@keyframes sectionFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.landing-hero {
    text-align: center;
    padding: 60px 20px;
}
.landing-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.gradient-text {
    background: linear-gradient(135deg, #fff, #13b1cd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.landing-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}
.btn-landing {
    display: inline-block;
    background: rgba(19,177,205,0.2);
    border: 1px solid #13b1cd;
    color: #13b1cd;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(5px);
}
.btn-landing:hover {
    background: #13b1cd;
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(19,177,205,0.5);
}

/* Sección "Acerca de CGE" */
.about-cge {
    background: rgba(20,20,30,0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 30px;
    margin: 60px 0;
    border: 1px solid rgba(19,177,205,0.2);
}
.about-cge h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #13b1cd;
}
.about-cge p {
    color: #f0f0f0;
}
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.mv-card {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.1);
    border: 1px solid rgba(19,177,205,0.3);
}
.mv-card i {
    font-size: 2.5rem;
    color: #13b1cd;
    margin-bottom: 15px;
}
.mv-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.mv-card p {
    color: #ddd;
}

/* Promo Block */
.s-promo-block {
    margin: 80px 0;
    text-align: center;
}
.s-promo-block__square-effect {
    position: relative;
    padding: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 48px;
    border: 1px solid rgba(19,177,205,0.2);
}
.s-promo-block__square-effect:before {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(19,177,205,0.3);
    content: " ";
    border-radius: 24px;
}
.s-promo-block__square-effect:after {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(19,177,205,0.3);
    content: " ";
    border-radius: 24px;
}
.s-promo-block h2 {
    color: #fff;
    font-size: 2.2rem;
}
.s-promo-block p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

/* Planes */
.s-plan {
    margin: 80px 0;
}
.s-plan h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-plan-v1 {
    background: rgba(0,0,0,0.4);
    border-radius: 32px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.s-plan-v1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(19,177,205,0.2);
    border: 1px solid rgba(19,177,205,0.5);
}
.s-plan-v1__price-mark {
    font-size: 1.8rem;
    vertical-align: top;
    color: #13b1cd;
}
.s-plan-v1__price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: #13b1cd;
}
.s-plan-v1 ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.s-plan-v1 li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn-plan {
    background: rgba(19,177,205,0.2);
    border: 1px solid #13b1cd;
    color: #13b1cd;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s;
}
.btn-plan:hover {
    background: #13b1cd;
    color: #fff;
}

/* Proceso de trabajo */
.s-process {
    margin: 80px 0;
}
.s-process h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-process-v1 {
    text-align: center;
    position: relative;
    padding: 20px;
}
.s-process-v1:last-child:before { display: none; }
.s-process-v1 i {
    font-size: 3rem;
    color: #13b1cd;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.s-process-v1 h3 {
    color: #fff;
}
.s-process-v1 p {
    color: #ccc;
}

/* Equipo */
.s-team {
    margin: 80px 0;
}
.s-team h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.s-team-v1 {
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.s-team-v1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(19,177,205,0.2);
    border: 1px solid rgba(19,177,205,0.4);
}
.s-team-v1 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #13b1cd;
}
.s-team-v1 h4 {
    color: #fff;
    margin-bottom: 5px;
}
.s-team-v1 p {
    color: #13b1cd;
    font-weight: 600;
}

/* Servicios */
.services-section {
    margin: 80px 0;
}
.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 600;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px 25px;
    width: 300px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #13b1cd;
    box-shadow: 0 25px 35px -15px rgba(19,177,205,0.4);
    background: rgba(19,177,205,0.1);
}
.service-card i {
    font-size: 3rem;
    color: #13b1cd;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.service-card:hover i {
    transform: scale(1.1);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.service-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Estadísticas */
.landing-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 80px 0;
    text-align: center;
}
.stat-item {
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 20px 40px;
    min-width: 180px;
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #13b1cd;
}
.stat-label {
    font-size: 1rem;
    color: #eee;
}

/* Testimonios */
.landing-testimonials {
    margin: 80px 0;
    text-align: center;
}
.landing-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px 25px;
    width: 300px;
    text-align: left;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(19,177,205,0.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.testimonial-card i {
    color: #13b1cd;
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #f0f0f0;
}
.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}
.testimonial-card span {
    font-size: 0.85rem;
    color: #13b1cd;
}

/* CTA final */
.landing-cta {
    text-align: center;
    margin-top: 100px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(19,177,205,0.1), rgba(0,0,0,0.6));
    border-radius: 60px;
}
.landing-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}
.btn-landing-large {
    background: #25D366;
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}
.btn-landing-large:hover {
    transform: scale(1.08) translateY(-5px);
    background: #20b859;
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

/* Botón Back to Top */
.s-back-to-top {
    position: fixed;
    right: 30px;
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 9999;
    background: #13b1cd;
    border-radius: 50%;
    color: #0A0F1A;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.s-back-to-top i {
    font-size: 1.2rem;
}
.s-back-to-top:hover {
    background: #fff;
    color: #13b1cd;
    transform: translateY(-5px);
    opacity: 1;
}
.s-back-to-top.-is-visible {
    bottom: 30px;
}

/* Parallax */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 80px 0;
    border-radius: 20px;
    overflow: hidden;
}
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}
.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}
.parallax-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* Responsive general */
@media (max-width: 768px) {
    .landing-hero h1 { font-size: 2.5rem; }
    .landing-hero p { font-size: 1.1rem; }
    .about-cge { padding: 30px 20px; }
    .mv-card { padding: 20px; }
    .service-card { width: calc(100% - 40px); }
    .stat-item { min-width: 140px; padding: 15px 25px; }
    .stat-number { font-size: 2rem; }
    .bottom-controls { bottom: 20px; gap: 12px; padding: 10px 20px; }
    .control-btn { width: 45px; height: 45px; font-size: 1.1rem; }
    .float-modal-btn { width: 45px; height: 45px; font-size: 1.2rem; top: 15px; left: 15px; }
    .s-back-to-top { width: 42px; height: 42px; }
    .modal-media-container { max-height: 68vh; }
    .s-process-v1:before { display: none; }
    .s-promo-block__square-effect:before,
    .s-promo-block__square-effect:after {
        width: 60px;
        height: 60px;
    }
    .parallax-section {
        background-attachment: scroll;
        height: 200px;
    }
    .parallax-content h2 {
        font-size: 1.5rem;
    }
    .parallax-content p {
        font-size: 1rem;
    }
}

/* Utilidades */
.g-color--primary { color: #13b1cd !important; }
.g-bg-color--primary { background-color: #13b1cd !important; }
.g-font-family--primary { font-family: 'Lato', sans-serif !important; }
.g-font-family--secondary { font-family: 'Montserrat', sans-serif !important; }
.g-font-weight--300 { font-weight: 300 !important; }
.g-font-weight--400 { font-weight: 400 !important; }
.g-font-weight--600 { font-weight: 600 !important; }
.g-font-weight--700 { font-weight: 700 !important; }
.g-text-center { text-align: center !important; }
.g-margin-b-20 { margin-bottom: 1.25rem !important; }
.g-margin-b-30 { margin-bottom: 1.875rem !important; }
.g-margin-b-40 { margin-bottom: 2.5rem !important; }
.g-margin-t-20 { margin-top: 1.25rem !important; }
.g-padding-x-20 { padding-left: 1.25rem; padding-right: 1.25rem; }
.g-overflow-hidden { overflow: hidden; }