/* ==========================================================================
   1. CONFIGURACIÓN GLOBAL Y RESET (ESTILO LIMPIO - PÁGINA EN BLANCO Y AZUL)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    background: #ffffff; /* CAMBIADO: Fondo totalmente claro/blanco */
    font-family: 'Inter', sans-serif;
    color: #1e293b;       /* CAMBIADO: Texto oscuro para legibilidad sobre blanco */
}

img {
    max-width: 100%;
    display: block;
}

p {
    line-height: 1.8;
    color: #475569;
}

/* =========================================================
   NAVBAR FUTURISTA PREMIUM TODOTEL
========================================================= */

.navbar-premium-flat{
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1380px;
    z-index: 9999;

    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 24px;

    box-shadow:
        0 10px 40px rgba(0,0,0,.08),
        0 0 0 1px rgba(255,255,255,.35),
        0 0 30px rgba(0,102,255,.08);

    padding: 14px 24px;

    transition: all .35s ease;
}

/* Glow line inferior */
.navbar-premium-flat::after{
    content:'';
    position:absolute;
    left:40px;
    right:40px;
    bottom:-1px;
    height:1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,102,255,.5),
        transparent
    );
}

/* Container */
.navbar-premium-flat .nav-container{
    max-width: 100%;
}

/* =========================================================
   LOGO PREMIUM
========================================================= */

.logo-area{
    display:flex;
    align-items:center;
    gap:28px;

    text-decoration:none;
}

.logo-container{

    width:88px;
    height:88px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.9),
            rgba(255,255,255,.55)
        );

    display:flex;
    align-items:center;
    justify-content:center;

    backdrop-filter: blur(12px);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:
        0 10px 30px rgba(0,102,255,.12),
        inset 0 0 0 1px rgba(255,255,255,.25);
}

.logo-container img{
    width:72px;
    height:auto;

    object-fit:contain;

    filter: drop-shadow(0 0 12px rgba(0,102,255,.18));
}

.logo-title{
    font-size:24px;
    font-weight:900;

    color:#0f172a;

    letter-spacing:.8px;
}

.logo-sub{
    font-size:11px;

    color:#64748b;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* LINKS */
.nav-menu-flat .nav-item{
    position:relative;
    margin:0 6px;
}

.nav-menu-flat .nav-link{
    position:relative;

    color:#0f172a !important;
    font-size:14px;
    font-weight:700;

    padding:12px 18px !important;

    border-radius:14px;

    transition:all .3s ease;
}

/* Hover premium */
.nav-menu-flat .nav-link:hover{
    color:#0066ff !important;

    background: rgba(255,255,255,.55);

    box-shadow:
        inset 0 0 0 1px rgba(0,102,255,.08),
        0 4px 15px rgba(0,102,255,.08);

    transform:translateY(-1px);
}

/* Línea animada */
.nav-menu-flat .nav-link::after{
    content:'';
    position:absolute;

    left:18px;
    right:18px;
    bottom:8px;

    height:2px;

    background:#0066ff;

    border-radius:20px;

    transform:scaleX(0);
    transform-origin:center;

    transition:transform .3s ease;
}

.nav-menu-flat .nav-link:hover::after{
    transform:scaleX(1);
}

/* BOTÓN TIENDA */
.btn-nav-flat{
    position:relative;

    overflow:hidden;

    background: linear-gradient(
        135deg,
        #0066ff,
        #0052cc
    );

    color:white;

    border:none;

    padding:13px 22px;

    border-radius:16px;

    font-size:13px;
    font-weight:700;

    box-shadow:
        0 10px 25px rgba(0,102,255,.22);

    transition:all .3s ease;
}

.btn-nav-flat:hover{
    transform:translateY(-2px);

    box-shadow:
        0 15px 35px rgba(0,102,255,.32);

    color:white;
}

/* BOTÓN DISTRIBUIDOR */
.btn-nav-distribuidor{
    background: rgba(255,255,255,.7);

    backdrop-filter: blur(12px);

    border:1px solid rgba(0,102,255,.12);

    color:#0066ff;

    padding:13px 20px;

    border-radius:16px;

    font-size:13px;
    font-weight:700;

    transition:all .3s ease;
}

.btn-nav-distribuidor:hover{
    background:#0066ff;
    color:white;

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,102,255,.2);
}

/* =========================================================
   MEGA MENU TODOTEL PREMIUM
========================================================= */

.dropdown-mega{
    position: static !important;
}

/* MENU */
.mega-dropdown-flat{

    width: 100%;
    max-width: 1280px;

    left: 50% !important;
    transform: translateX(-50%) !important;

    margin-top: 22px !important;

    border: none !important;

    border-radius: 30px;

    padding: 38px !important;

    background: rgba(255,255,255,.82);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08),
        0 0 0 1px rgba(255,255,255,.4);

    overflow: hidden;
}

/* GRID */
.mega-grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

/* CARD */
.mega-item-link{

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    min-height: 170px;

    border-radius: 24px;

    background: rgba(255,255,255,.65);

    border: 1px solid rgba(0,102,255,.08);

    text-decoration: none;

    overflow: hidden;

    transition: all .35s ease;
}

/* Glow */
.mega-item-link::before{

    content:'';

    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    background: rgba(0,102,255,.05);

    top:-55px;
    right:-55px;
}

/* Hover */
.mega-item-link:hover{

    transform: translateY(-6px);

    background: white;

    border-color: rgba(0,102,255,.14);

    box-shadow:
        0 20px 40px rgba(0,102,255,.08);
}

/* ICON */
.mega-icon{

    min-width: 62px;

    width: 62px;
    height: 62px;

    border-radius: 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            rgba(0,102,255,.12),
            rgba(0,102,255,.04)
        );

    transition: all .3s ease;
}

.mega-icon i{

    font-size: 24px;

    color:#0066ff;
}

.mega-item-link:hover .mega-icon{

    transform: scale(1.05);
}

/* CONTENT */
.mega-content{

    flex:1;
}

.mega-content h4{

    font-size: 18px;

    font-weight: 800;

    color:#0f172a;

    margin-bottom: 10px;
}

.mega-content p{

    margin:0;

    font-size: 14px;

    line-height: 1.7;

    color:#64748b;
}

/* RESPONSIVE */
@media(max-width:991px){

    .mega-dropdown-flat{

        position: relative !important;

        left:0 !important;
        transform:none !important;

        margin-top:15px !important;

        padding:20px !important;

        border-radius:22px;
    }

    .mega-grid{

        grid-template-columns: 1fr;
    }

    .mega-item-link{

        min-height:auto;
    }

}

/* ==========================================================================
   3. HERO SECTION INTELIGENTE (FONDOS SUAVES / CLAROS CON LUZ AZULADA)
   ========================================================================== */
.hero-tech {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, #eff6ff 0%, #ffffff 60%);
    padding-top: 140px;
    padding-bottom: 60px;
    border-bottom: 1px solid #f1f5f9;
}
.hero-network {
    position: absolute;
    inset: 0;
    background-image: url('../img/network-map.png');
    background-size: cover;
    background-position: center;
    opacity: .10;
    animation: networkMove 25s linear infinite;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-mini {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.06);
    color: #0052cc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin: 25px 0;
    color: #0f172a;
}

.hero-content p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-hero-primary {
    padding: 16px 30px;
    border-radius: 12px;
    background: #0066ff;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.btn-hero-primary:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-hero-secondary {
    padding: 16px 30px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0066ff;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: #f8fafc;
    border-color: #0066ff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0066ff;
    margin: 0;
}

.stat-box span {
    color: #64748b;
    font-size: 14px;
}

/* Elementos Visuales Derecha del Hero */
.hero-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-placeholder-art {
    width: 320px;
    height: 320px;
    background: radial-gradient(#dbeafe, #eff6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-art-icon {
    font-size: 100px;
    color: #3b82f6;
    opacity: 0.7;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.floating-card i { font-size: 20px; color: #0066ff; }
.floating-card h5 { margin: 0; font-size: 14px; font-weight: 700; color: #0f172a; }
.floating-card span { color: #64748b; font-size: 11px; }

.card-1 { top: 20px; right: 20px; }
.card-2 { bottom: 80px; left: 10px; }
.card-3 { bottom: 10px; right: 30px; }

/* ==========================================================================
   4. SECCIÓN NOSOTROS (NUEVA - FONDO BLANCO ELEGANTE)
   ========================================================================== */
.nosotros-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title-dark {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.about-feature {
    font-weight: 600;
    color: #334155;
    font-size: 15px;
}

/* Tarjetas de Propósito y Misión Adaptadas al Entorno */
.vision-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.vision-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 102, 255, 0.06);
    color: #0066ff;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
}

.vision-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 5px;
}

.vision-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066ff;
    color: white;
    font-size: 20px;
}

.vision-card p {
    margin-top: 15px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.vision-line {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.vision-footer {
    display: flex;
    gap: 8px;
}

.vision-footer span {
    padding: 6px 12px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0066ff;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================================================
   5. SECCIÓN SOLUCIONES PREMIUM (MODERNA CON CLARIDAD PERFECCIONADA)
   ========================================================================== */
.solutions-premium {
    padding: 100px 0;
    background: #f8fafc; /* Contraste sutil grisáceo/azul claro */
    position: relative;
}

.solutions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.solutions-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.solution-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.solution-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.06);
    border-color: #0066ff;
}

.card-image {
    height: 140px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder i {
    font-size: 48px;
    color: #0066ff;
}

.card-content {
    padding: 25px;
}

.card-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.card-link:hover {
    color: #0052cc;
}

/* ==========================================================================
   6. DIFERENCIADORES
   ========================================================================== */
.diferenciadores {
    padding: 90px 0;
    background: #ffffff;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.06);
    color: #0066ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.diff-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s;
}

.diff-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border-color: #0066ff;
}

.diff-card i {
    font-size: 32px;
    color: #0066ff;
    margin-bottom: 15px;
}

.diff-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   7. SECCIÓN UNBOXING / VIDEO BLOG (ESTILO ACABADO PREMIUM)
   ========================================================================== */
.unboxing-section {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.unboxing-header {
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.unboxing-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
}

.video-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: all 0.3s;
    height: 100%;
}

.video-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.video-wrapper-local {
    position: relative;
    width: 100%;
    height: 210px; /* Altura ideal estándar para tarjetas */
    background: #0f172a; /* Fondo negro de respaldo mientras carga */
    overflow: hidden;
}

.video-wrapper-local video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hace que el video llene el contenedor sin deformarse */
    display: block;
}

.video-thumb-placeholder {
    font-size: 60px;
    color: #3b82f6;
    opacity: 0.4;
}

.video-overlay-play {
    position: absolute;
    z-index: 5;
    font-size: 50px;
    color: #ffffff;
    opacity: 0.85;
    transition: all 0.3s;
}

.video-blog-card:hover .video-overlay-play {
    transform: scale(1.15);
    color: #0066ff;
}

.video-info {
    padding: 20px;
}

.video-tag {
    font-size: 11px;
    font-weight: 700;
    color: #0066ff;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.video-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   8. INTERFAZ DE MARCAS (BRANDS TICKER RE-COHESIONADO)
   ========================================================================== */

/* =====================================================
   BRANDS SECTION
===================================================== */

.brands-section{

    padding:110px 0;

    background:white;

    overflow:hidden;

    position:relative;
}

/* =====================================================
   HEADER
===================================================== */

.brands-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;
}

.brands-header h2{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    margin-top:20px;

    margin-bottom:20px;
}

.brands-header p{

    color:#64748b;

    font-size:17px;

    line-height:1.8;
}

/* =====================================================
   SLIDER
===================================================== */

.slider-container{

    position:relative;

    width:100%;

    overflow:hidden;

    margin-bottom:30px;
}

.slider-track{

    display:flex;

    align-items:center;

    width:max-content;

    gap:24px;
}

/* =====================================================
   ITEM
===================================================== */

.slide-item{

    width:240px;

    height:120px;

    flex-shrink:0;

    background:white;

    border-radius:24px;

    border:1px solid #e2e8f0;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:25px;

    transition:.3s ease;
}

.slide-item:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 40px rgba(15,23,42,.08);
}

/* =====================================================
   IMAGE
===================================================== */

.slide-item img{

    width:100%;

    height:70px;

    object-fit:contain;

    filter:grayscale(0%);

    opacity:.95;

    transition:.3s ease;
}

.slide-item:hover img{

    transform:scale(1.05);
}

/* =====================================================
   ANIMATIONS
===================================================== */

.slider-left .slider-track{

    animation:
        scrollLeft 12s linear infinite;
}

.slider-right .slider-track{

    animation:
        scrollRight 12s linear infinite;
}

@keyframes scrollLeft{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }

}

@keyframes scrollRight{

    0%{

        transform:translateX(-50%);
    }

    100%{

        transform:translateX(0);
    }

}

/* =====================================================
   HOVER PAUSE
===================================================== */

.slider-container:hover .slider-track{

    animation-play-state:paused;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .brands-section{

        padding:80px 0;
    }

    .brands-header h2{

        font-size:32px;
    }

    .slide-item{

        width:180px;

        height:100px;

        padding:18px;
    }

    .slide-item img{

        height:55px;
    }

}

@media(max-width:576px){

    .slide-item{

        width:150px;

        height:85px;
    }

    .slide-item img{

        height:45px;
    }

}

/* ==========================================================================
   9. MANIFIESTO
   ========================================================================== */
.manifiesto {
    padding: 80px 0;
    background: #f8fafc;
}

.manifiesto-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.manifiesto-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

/* ==========================================================================
   10. MODAL Y ELEMENTOS DE FORMULARIO COMERCIAL
   ========================================================================== */
.modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.form-control, .form-select {
    border: 1px solid #cbd5e1;
    padding: 11px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* ==========================================================================
   11. FOOTER INTEGRADO (ENLACES, SOCIAL MEDIA Y REDIRECCIÓN SOLCOM)
   ========================================================================== */
footer {
    background: #0f172a; /* Fondo Premium Oscuro para el Cierre Visual */
    color: #f8fafc;
    padding: 80px 0 30px;
}

footer h3, footer h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
}

/* Redes Sociales */
.social-networks {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #0066ff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Crédito Solcom */
.copy-container {
    font-size: 14px;
}

.solcom-link {
    transition: color 0.2s;
}

.solcom-link:hover {
    color: #3b82f6 !important;
}

/* Componente Flotante WhatsApp */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* RESPONSIVO BÁSICO */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .hero-content { text-align: center; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .floating-card { display: none; }
}
/* =========================================
   PRODUCTOS NUEVOS
========================================= */

.productos-nuevos {
    padding: 100px 0;
    background: #ffffff;
}

.producto-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all .3s ease;
    height: 100%;
}

.producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.producto-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.producto-info {
    padding: 20px;
}

.producto-info span {
    color: #0066ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.producto-info h4 {
    margin: 12px 0;
    font-size: 20px;
    font-weight: 700;
}

.producto-info a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
}

/* =========================================================
   UBICACIONES
========================================================= */

.ubicacion-card{

    overflow:hidden;

    border-radius:28px;

    background:white;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    height:100%;
}

.ubicacion-map iframe{

    width:100%;
    height:320px;

    border:none;
}

.ubicacion-info{

    padding:28px;
}

.ubicacion-info h4{

    font-size:24px;
    font-weight:800;

    margin-bottom:14px;
}

.ubicacion-info p{

    color:#64748b;

    line-height:1.8;
}

.ubicacion-info a{

    display:inline-flex;

    margin-top:18px;

    padding:12px 18px;

    border-radius:14px;

    background:#0066ff;

    color:white;

    text-decoration:none;

    font-weight:700;
}
/* =========================================================
   MOBILE NAV BUTTONS
========================================================= */

@media(max-width:991px){

    .mobile-nav-buttons{

        display:flex;
        flex-direction:column;

        gap:14px;

        margin-top:25px;
    }

    .mobile-nav-buttons .btn-nav-flat,
    .mobile-nav-buttons .btn-nav-distribuidor{

        width:100%;

        justify-content:center;

        text-align:center;

        padding:16px;

        font-size:15px;

        border-radius:18px;
    }

}
/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom-premium{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding:28px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.02),
            rgba(255,255,255,.01)
        );
}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom-content p{

    margin:0;

    color:#94a3b8;

    font-size:14px;

    letter-spacing:.3px;
}

.footer-bottom-content span{

    color:white;

    font-weight:700;

    letter-spacing:.8px;
}

@media(max-width:768px){

    .footer-bottom-content{

        flex-direction:column;

        text-align:center;
    }

}
/* =========================================================
   TODOTEL HEADER
========================================================= */

/* =========================================================
   HEADER
========================================================= */

.todotel-header{

    position: relative;

    width:100%;

    z-index:9999;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar-tech{

    background:#071120;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    padding:10px 0;

    transition:
        transform .35s ease,
        opacity .35s ease,
        height .35s ease,
        padding .35s ease;
}

/* CUANDO HACE SCROLL */
.todotel-header.scrolled .topbar-tech{

    transform:translateY(-100%);

    opacity:0;

    height:0;

    overflow:hidden;

    padding:0;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar-tech{

    position: sticky;

    top:0;

    z-index:9999;

    background:white;

    padding:16px 0;

    transition:all .3s ease;

    box-shadow:
        0 4px 20px rgba(0,0,0,.04);
}

/* EFECTO SCROLL */
.todotel-header.scrolled .navbar-tech{

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    padding:12px 0;
}
/* =========================================================
   TOPBAR
========================================================= */

.topbar-tech{

    background:#0f172a;

    border-bottom:1px solid rgba(255,255,255,.06);

    padding:10px 0;
}

.topbar-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.top-socials{

    display:flex;
    align-items:center;

    gap:12px;
}

.top-socials a{

    width:34px;
    height:34px;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.06);

    color:white;

    text-decoration:none;

    transition:.3s;
}

.top-socials a:hover{

    background:#0066ff;

    transform:translateY(-2px);
}

/* RIGHT */
.top-actions{

    display:flex;
    align-items:center;

    gap:14px;
}

.top-phone{

    color:#cbd5e1;

    text-decoration:none;

    font-size:14px;

    display:flex;
    align-items:center;

    gap:8px;
}

/* BUTTONS */
.btn-top-store,
.btn-top-register{

    padding:10px 18px;

    border-radius:12px;

    text-decoration:none;

    font-size:13px;
    font-weight:700;

    transition:.3s;
}

.btn-top-store{

    background:#0066ff;

    color:white;
}

.btn-top-register{

    background:rgba(255,255,255,.08);

    color:white;

    border:1px solid rgba(255,255,255,.08);
}

.btn-top-store:hover,
.btn-top-register:hover{

    transform:translateY(-2px);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar-tech{

    background:white;

    padding:18px 0;
}

.logo-main img{

    height:92px;
    width:auto;

    object-fit:contain;
}

/* MENU */
.navbar-tech .nav-link{

    position:relative;

    color:#0f172a !important;

    font-size:15px;
    font-weight:700;

    padding:14px 18px !important;

    transition:.3s;
}

.navbar-tech .nav-link::after{

    content:'';

    position:absolute;

    left:18px;
    right:18px;
    bottom:8px;

    height:2px;

    background:#0066ff;

    transform:scaleX(0);

    transition:.3s;
}

.navbar-tech .nav-link:hover{

    color:#0066ff !important;
}

.navbar-tech .nav-link:hover::after{

    transform:scaleX(1);
}

/* MOBILE */
.navbar-toggler{

    border:none;
    box-shadow:none !important;
}

.navbar-toggler i{

    font-size:24px;
    color:#0f172a;
}

/* MOBILE BUTTONS */
.mobile-buttons{

    display:flex;
    flex-direction:column;

    gap:14px;

    margin-top:24px;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    /* TOPBAR */
    .topbar-tech{

        padding:12px 0;
    }

    .topbar-wrapper{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:14px;

        text-align:center;
    }

    /* SOCIAL */
    .top-socials{

        justify-content:center;

        width:100%;
    }

    /* ACTIONS */
    .top-actions{

        width:100%;

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:10px;
    }

    .top-phone{

        width:100%;

        justify-content:center;

        font-size:13px;
    }

    .btn-top-store,
    .btn-top-register{

        flex:1;

        min-width:140px;

        text-align:center;

        display:flex;

        align-items:center;
        justify-content:center;

        padding:12px 16px;
    }

    /* NAVBAR */
    .navbar-tech{

        padding:14px 0;
    }

    .logo-main img{

        height:72px;
    }

    /* COLLAPSE */
    .navbar-collapse{

        margin-top:18px;

        padding-top:18px;

        border-top:1px solid #e2e8f0;
    }

    /* MOBILE LINKS */
    .navbar-tech .nav-link{

        padding:14px 0 !important;
    }

}

/* =========================================================
   FOOTER PREMIUM TODOTEL
========================================================= */

.footer-premium{

    background:#071120;

    color:white;

    padding-top:80px;

    position:relative;

    overflow:hidden;
}

/* =========================================================
   MAIN
========================================================= */

.footer-main{

    display:grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr;

    gap:50px;

    align-items:flex-start;
}

/* =========================================================
   BRAND
========================================================= */

.footer-brand img{

    width:180px;

    height:auto;

    object-fit:contain;

    margin-bottom:24px;
}

.footer-brand p{

    color:#94a3b8;

    line-height:1.9;

    max-width:360px;

    margin-bottom:28px;
}

/* =========================================================
   SOCIAL
========================================================= */

.social-networks{

    display:flex;

    align-items:center;

    gap:14px;
}

.social-networks a{

    width:42px;
    height:42px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.05);

    color:white;

    text-decoration:none;

    transition:.3s;
}

.social-networks a:hover{

    background:#0066ff;

    transform:translateY(-3px);
}

/* =========================================================
   COLUMNS
========================================================= */

.footer-column h4{

    font-size:18px;

    font-weight:800;

    margin-bottom:22px;

    color:white;
}

.footer-column ul{

    padding:0;
    margin:0;

    list-style:none;
}

.footer-column ul li{

    color:#94a3b8;

    margin-bottom:14px;

    line-height:1.7;

    display:flex;
    align-items:flex-start;

    gap:10px;
}

.footer-column ul li i{

    color:#0066ff;

    margin-top:4px;
}

/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom-premium{

    margin-top:70px;

    border-top:
        1px solid rgba(255,255,255,.08);

    padding:26px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.02),
            rgba(255,255,255,.01)
        );
}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-copy,
.footer-dev{

    color:#94a3b8;

    font-size:14px;

    letter-spacing:.3px;
}

.footer-copy span,
.footer-dev span{

    color:white;

    font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-main{

        grid-template-columns:1fr 1fr;

        gap:40px;
    }

}

@media(max-width:768px){

    .footer-main{

        grid-template-columns:1fr;
    }

    .footer-bottom-content{

        flex-direction:column;

        text-align:center;
    }

    .footer-brand img{

        width:150px;
    }

}


/* =====================================================
   PRODUCTOS NUEVOS
===================================================== */

.productos-nuevos{

    padding:110px 0;

    background:#f8fafc;
}

/* =====================================================
   CARD
===================================================== */

.producto-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    height:100%;

    border:
        1px solid #e2e8f0;

    transition:.35s ease;

    position:relative;
}

.producto-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 25px 50px rgba(15,23,42,.08);
}

/* =====================================================
   IMAGE
===================================================== */

.producto-image{

    height:260px;

    overflow:hidden;

    background:white;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:25px;
}

.producto-image img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.4s ease;
}

.producto-card:hover img{

    transform:scale(1.05);
}

/* =====================================================
   INFO
===================================================== */

.producto-info{

    padding:28px;
}

/* =====================================================
   BRAND
===================================================== */

.producto-info span{

    display:inline-flex;

    align-items:center;

    padding:8px 14px;

    background:#eff6ff;

    color:#2563eb;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    margin-bottom:18px;
}

/* =====================================================
   TITLE
===================================================== */

.producto-info h4{

    font-size:21px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:14px;

    min-height:58px;
}

/* =====================================================
   DESC
===================================================== */

.producto-info p{

    color:#64748b;

    font-size:14px;

    line-height:1.7;

    margin-bottom:22px;

    min-height:72px;
}

/* =====================================================
   BUTTON
===================================================== */

.producto-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

    transition:.3s;
}

.producto-info a:hover{

    gap:14px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .producto-image{

        height:220px;
    }

}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section{

    padding:120px 0;

    background:#f8fafc;
}

/* =====================================================
   HEADER
===================================================== */

.contact-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;
}

.contact-header h2{

    font-size:46px;

    font-weight:800;

    color:#0f172a;

    margin:20px 0;
}

.contact-header p{

    color:#64748b;

    font-size:17px;

    line-height:1.8;
}

/* =====================================================
   CARDS
===================================================== */

.contact-info-card,
.contact-form-card{

    background:white;

    border-radius:34px;

    padding:45px;

    border:1px solid #e2e8f0;

    height:100%;

    box-shadow:
        0 20px 50px rgba(15,23,42,.04);
}

/* =====================================================
   CONTACT ITEM
===================================================== */

.contact-item{

    display:flex;

    gap:22px;

    margin-bottom:35px;
}

.contact-icon{

    width:68px;
    height:68px;

    min-width:68px;

    border-radius:22px;

    background:#eff6ff;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#2563eb;

    font-size:24px;
}

.contact-item span{

    color:#64748b;

    font-size:13px;

    display:block;

    margin-bottom:8px;
}

.contact-item h4{

    font-size:22px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:8px;
}

.contact-item p{

    color:#64748b;

    line-height:1.7;

    margin:0;
}

/* =====================================================
   SOCIALS
===================================================== */

.contact-socials{

    display:flex;

    gap:14px;

    margin-top:40px;
}

.contact-socials a{

    width:54px;
    height:54px;

    border-radius:18px;

    background:#0f172a;

    color:white;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.3s ease;
}

.contact-socials a:hover{

    transform:translateY(-4px);

    background:#2563eb;
}

/* =====================================================
   FORM
===================================================== */

.form-group label{

    display:block;

    margin-bottom:12px;

    font-weight:700;

    color:#0f172a;
}

.contact-form-card .form-control{

    height:60px;

    border-radius:18px;

    border:1px solid #dbe4ee;

    padding:0 20px;

    box-shadow:none;
}

.contact-form-card .form-control:focus{

    border-color:#2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,.10);
}

.textarea-control{

    height:180px !important;

    padding-top:18px !important;

    resize:none;
}

/* =====================================================
   BUTTON
===================================================== */

.contact-btn{

    height:62px;

    width:100%;

    border:none;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color:white;

    font-weight:700;

    font-size:15px;

    transition:.3s ease;
}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 40px rgba(37,99,235,.25);
}

/* =====================================================
   MAPS
===================================================== */

.contact-maps{

    margin-top:70px;

    border-radius:34px;

    overflow:hidden;

    border:1px solid #e2e8f0;

    box-shadow:
        0 20px 50px rgba(15,23,42,.05);
}

.contact-maps iframe{

    width:100%;

    height:500px;

    border:0;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .contact-section{

        padding:90px 0;
    }

    .contact-header h2{

        font-size:34px;
    }

    .contact-info-card,
    .contact-form-card{

        padding:30px;
    }
    
        .modal{
        z-index:11000 !important;
    }

    .modal-backdrop{
        z-index:10990 !important;
    }

}

@media(max-width:576px){

    .contact-item{

        flex-direction:column;
    }

    .contact-header h2{

        font-size:28px;
    }

    .contact-maps iframe{

        height:350px;
    }
    
    .modal{
        z-index:11000 !important;
    }

    .modal-backdrop{
        z-index:10990 !important;
    }

}

.modal{
    z-index:11000 !important;
}

.modal-backdrop{
    z-index:10990 !important;
}