*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    min-width:0;
}

.img{
    max-width:100%;
    height:auto;
}
.p11{
    text-align: justify;
}
.texto{
    text-align: justify;
}
H2{
    text-transform: uppercase;
}
h3{
    text-transform: uppercase;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;

  text-decoration:none;
  color:#000;

  cursor:pointer;
}

.logo img{
  height:40px;
  width:auto;
}
html, body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    background-color: #0b0f14 !important;
    color: #fff;
}


/* por si algún contenedor tapa el fondo */
header, section, div {
    background-color: transparent;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: 40px;          /* fuerza proporción uniforme */
    object-fit: contain;  /* evita que se deforme */
    display: block;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 60px;
    font-family: 'Montserrat', sans-serif;
    background: #231f20; /* FONDO NEGRO */
}


/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* NAV alineado a la derecha */
.nav{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:nowrap;
}
@media (max-width: 900px){
    .nav{
        position: static;
        left: 0;
        margin-left: 0;
    }
}
.logo span {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b1c3d;
font-family: 'Montserrat', sans-serif;
}
.nav {
    position: relative;
    display: flex;
    justify-content: center; /* centra los enlaces */
    align-items: center;
    
    gap:18px;
    flex-wrap:wrap;
    padding: 20px 0;
    
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav a:hover {
    color: #5dc1b9;
}
/* SECCIÓN */
.empresa{
  padding:100px 10%;
  background:#f5f5f5;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

/* CONTENEDOR IZQUIERDO */
.empresa-info{
  flex:1;
  min-width:320px;

  display:flex;
  flex-direction:column;
  gap:25px;
}

/* RECTÁNGULOS */
.box{
  background:white;
  padding:30px;
  border-radius:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);

  transition:0.3s;
}

.box:hover{
  transform:translateX(10px);
}

/* TITULOS */
.box h3{
  font-size:34px;
  margin-bottom:5px;
  color:#5dc1b9;
font-family: 'Montserrat', sans-serif;
}

/* TEXTOS */
.box p{
  color:#000000;
  line-height:2.1;
  font-size:17px;
}

/* IMAGEN */
.empresa-img{
  flex:1;
  min-width:320px;
}

.empresa-img img{
  width:100%;
  height:650px;
  object-fit:cover;

  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media(max-width:900px){

  .empresa{
    flex-direction:column;
  }

  .empresa-img img{
    height:400px;
  }

}
/* BOTÓN AMARILLO */
.nav .btn {
    background: #5dc1b9;
    color: #000;
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.botones-header{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}
.botones-header a{
    width:260px;
    text-align:center;
}
.lado-derecho{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* BOTON AZUL */
.btn-vender{
    background:#73d7d1;
    color:#000;
    padding:15px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;

    margin-bottom:12px;
}
.header{
    position:relative;
}

.btn-secundario{
    position:absolute;

    top:10px;
    right:-465px;

    width:325px;

    display:flex;
    justify-content:center;

    padding:12px 20px;
    text-decoration:none;
    border-radius:8px;
    font-size:13px;
    font-weight:bold;
    letter-spacing:1px;
    color:white;
    background:#111;
    overflow:hidden;
    text-align:center;

    z-index:999;
    isolation:isolate;
    box-shadow:
    0 0 10px rgba(255,255,255,0.2),
    0 0 20px rgba(0,255,255,0.4),
    0 0 40px rgba(255,0,255,0.4);

    transition:0.3s;
}
.header .nav a{
    position:relative;
    top:19px;
}

.btn-vender{
    background:#73d7d1;
    color:#000;
    padding:15px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    letter-spacing:1px;
    transition:0.3s;
}

.btn-vender:hover{
    transform:scale(1.05);
}


.btn-secundario:hover{
    background:#73d7d1;
    color:#000;

    transform:scale(1.08);

    box-shadow:
    0 0 20px cyan,
    0 0 40px magenta,
    0 0 60px blue;
}


/* BORDE RGB */
.btn-secundario::before{
    content:"";
    position:absolute;
    top:-2px;
    left:-2px;
    right:-2px;
    bottom:-2px;
    background:linear-gradient(
        45deg,
        red,
        orange,
        yellow,
        lime,
        cyan,
        blue,
        violet,
        red
    );

    background-size:400%;
    border-radius:10px;
    z-index:-1;

    animation:rgb 6s linear infinite;
}

/* CENTRO OSCURO */
.btn-secundario::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#111;
    border-radius:6px;
    z-index:-1;
}

/* ANIMACION */
@keyframes rgb{
    0%{
        background-position:0 0;
    }

    50%{
        background-position:400% 0;
    }

    100%{
        background-position:0 0;
    }
}
.nav .btn:hover {
    background: #000;
    color: #fff;
}

/* idiomas arriba a la derecha */
.lang {
    position: absolute;
    right: 40px;
    top: 0;
    font-size: 11px;
    letter-spacing: 1px;
    color: #ffffff;
font-family: 'Montserrat', sans-serif;
}
/* ===== HERO ===== */
  
.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
font-family: 'Montserrat', sans-serif;
    
}

.hero-content p {
    font-size: 19px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;

}
.hero{
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.hero-section{
    height:100vh;
    position:relative;
    overflow:hidden;
}
.hero-slider{
    position: absolute;
    inset: 0;
}

.hero-track{
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.hero-track .slide{
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;

    background-size: cover;
    background-position: center;
    position: relative;
}
/* overlay oscuro */
.hero-track .slide::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.35);
    pointer-events: none;
}

/* contenido encima */
.hero-content{
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 1000px;

    text-align: center;
}
.hero-btn {
    margin-top: 25px;
    display: inline-block;
    background: #5dc1b9;
    color: black;
    padding: 15px 25px;
font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
}
.img-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

.img-track{
    display:flex;
    height:100%;
    transition: transform 0.8s ease-in-out;
}

.img-slide{
    min-width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
}

/* overlay oscuro */
.img-slider::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#031526;
    font-family:Montserrat,sans-serif;
}

/* CONTENEDOR */

.asesor-premium{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px;

    background:linear-gradient(
        110deg,
        #1a1416 0%,
        #231f20 55%
    );

    position:relative;
    overflow:hidden;
}

/* CIRCULO DECORATIVO */

.circulo{
    width:450px;
    height:450px;

    border-radius:50%;

    background:linear-gradient(
        45deg,
        #31e0c9,
        #6ddf86
    );

    position:absolute;

    left:80px;
    top:220px;

    opacity:.85;
}
.circulo2{
    width:450px;
    height:450px;

    border-radius:50%;

    background:linear-gradient(
        45deg,
        #31e0c9,
        #6ddf86
    );

    position:absolute;

    left:80px;
    top:120px;

    opacity:.85;
}
.circulo1{
    width:450px;
    height:450px;

    border-radius:50%;

    background:linear-gradient(
        45deg,
        #31e0c9,
        #6ddf86
    );

    position:absolute;

    left:80px;
    top:120px;

    opacity:.85;
}

/* NUMERO GIGANTE */

.numero-fondo{
    position:absolute;

    right:80px;
    top:60px;

    font-size:320px;
    font-weight:900;

    color:rgba(255,255,255,.03);

    pointer-events:none;
}

/* IZQUIERDA */

.col-izquierda{
    width:40%;
    position:relative;
    z-index:2;
}

.foto-asesor{
    width:450px;
    height:450px;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #31e0c9;

    box-shadow:
    0 0 30px rgba(49,224,201,.4);
}

.nombre-box{
    margin-top:-60px;
}

.nombre-box span{
    background:#31e0c9;

    color:#000;

    padding:10px 20px;

    font-weight:700;
}

.nombre-box h1{
    font-size:90px;
    line-height:0.9;

    color:white;

    margin-top:20px;
}

.nombre-box h1:last-child{
    color:#31e0c9;
}

.nombre-box h3{
    color:white;

    margin-top:15px;

    font-weight:400;
}

.frase{
    margin-top:30px;

    color:white;

    font-size:18px;
    line-height:1.8;

    max-width:450px;
}

.btn-contacto{
    display:inline-block;

    margin-top:35px;

    padding:15px 35px;

    border:2px solid #31e0c9;

    color:white;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;
}

.btn-contacto:hover{
    background:#31e0c9;
    color:black;
}

/* DERECHA */

.col-derecha{
    width:60%;
    z-index:2;

    color:white;

    padding-left:60px;
}

.titulo-mini{
    color:#31e0c9;

    font-size:28px;

    display:block;

    margin-bottom:25px;
}

.bloque p{
    max-width:700px;

    line-height:2;
    font-size:20px;
}

/* ESTADISTICAS */

.estadisticas{
    display:flex;

    gap:50px;

    margin-top:50px;
}

.stat h2{
    color:#31e0c9;

    font-size:70px;
}

.stat span{
    font-size:18px;
}

/* ESPECIALIDADES */

.especialidades{
    margin-top:70px;
}

.especialidades h2{
    color:#31e0c9;
    margin-bottom:25px;
}

.item{
    margin-bottom:25px;
}

.item h4{
    font-size:24px;
    margin-bottom:10px;
}

.item p{
    opacity:.8;
}

/* LOGROS */

.logros{
    margin-top:60px;

    padding:35px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    backdrop-filter:blur(8px);
}

.logros h2{
    color:#31e0c9;
    margin-bottom:25px;
}

.logros ul{
    list-style:none;
}

.logros li{
    margin-bottom:18px;
    position:relative;
    padding-left:25px;
}

.logros li::before{
    content:"●";

    color:#31e0c9;

    position:absolute;
    left:0;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .asesor-premium{
        flex-direction:column;
    }

    .col-izquierda,
    .col-derecha{
        width:100%;
    }

    .col-derecha{
        padding-left:0;
        margin-top:50px;
    }

    .nombre-box h1{
        font-size:60px;
    }

    .estadisticas{
        flex-wrap:wrap;
    }

}
/* ================= CHAT IA ================= */

.chat-container{
    position:fixed;
    bottom:100px;
    right:20px;
    z-index:9999;
    font-family:Arial, Helvetica, sans-serif;
}

/* BOTÓN FLOTANTE */

.chat-toggle{
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#1e88ff,#005eff);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#fff;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    transition:0.3s;
    animation:pulse 2s infinite;
}

.chat-toggle:hover{
    transform:scale(1.08);
}
.chat-footer input{
    flex:1;
    height:55px;
    border:none;
    outline:none;
    background:#f1f5f9;
    border-radius:30px;
    padding:0 20px;
    font-size:15px;
}
/* VENTANA */

.chat-box{
    width:350px;
    height:560px;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    display:none;
    flex-direction:column;
    box-shadow:0 15px 40px rgba(0,0,0,0.20);
    animation:showChat 0.3s ease;
}
.chat-body{
    flex:1;
    background:#f4f7fb;
    padding:20px;
    overflow-y:auto;
}

/* HEADER */

.chat-header{
    background:linear-gradient(135deg,#1e88ff,#005eff);
    padding:22px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}
.chat-footer button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#1e88ff,#005eff);
    color:#fff;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:0.3s;
    padding:0;
}

.chat-footer button:hover{
    transform:scale(1.08);
    box-shadow:0 8px 20px rgba(0,94,255,0.35);
}
.chat-header::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

/* INFO */

.header-info{
    display:flex;
    align-items:center;
    gap:14px;
    z-index:2;
}

/* ICONO BOT */

.header-info::before{
    content:"🎧";
    width:52px;
    height:52px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:#0066ff;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* TEXTO */

.header-info h3{
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.header-info p{
    font-size:14px;
    margin-top:8px;
    opacity:0.9;
}

/* ESTADO */

.status{
    width:10px;
    height:10px;
    background:#00ff66;
    border-radius:50%;
    position:absolute;
    left:63px;
    top:67px;
    border:2px solid #1e88ff;
}

/* BOTÓN CERRAR */

.close-chat{
    background:rgba(255,255,255,0.12);
    border:none;
    width:45px;
    height:45px;
    border-radius:15px;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:0.3s;
    z-index:2;
}

.close-chat:hover{
    background:rgba(255,255,255,0.22);
    transform:scale(1.05);
}

/* BODY */

.chat-body{
    flex:1;
    background:#f4f7fb;
    padding:18px;
    overflow-y:auto;
}

/* MENSAJE BOT */

.bot-message{
    background:#fff;
    padding:18px;
    border-radius:22px 22px 22px 8px;
    max-width:250px;
    line-height:1.6;
    font-size:15px;
    color:#333;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    animation:fadeIn 0.4s ease;
}

/* FOOTER */

.chat-footer{
    background:#fff;
    padding:14px;
    display:flex;
    align-items:center;
    gap:10px;
    border-top:1px solid #e5e7eb;
}

/* INPUT */

.chat-footer input{
    flex:1;
    height:52px;
    border:none;
    outline:none;
    background:#f1f5f9;
    border-radius:30px;
    padding:0 18px;
    font-size:15px;
    transition:0.3s;
}

.chat-footer input:focus{
    background:#eaf2ff;
}

/* BOTÓN */

.chat-footer button{
    border:none;
    height:52px;
    padding:0 24px;
    border-radius:30px;
    background:linear-gradient(135deg,#1e88ff,#005eff);
    color:#fff;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.chat-footer button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,94,255,0.35);
}

/* ANIMACIONES */

@keyframes showChat{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(30,136,255,0.5);
    }

    70%{
        box-shadow:0 0 0 18px rgba(30,136,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(30,136,255,0);
    }
}
.user-message{
    background:linear-gradient(135deg,#1e88ff,#005eff);
    color:#fff;
    padding:14px 18px;
    border-radius:20px 20px 5px 20px;
    margin-left:auto;
    margin-top:15px;
    width:fit-content;
    max-width:250px;
    line-height:1.5;
    font-size:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    animation:fadeIn 0.3s ease;
}

/* MENSAJE BOT */

.bot-message{
    margin-top:15px;
}
/* ========================= */
/* RESPONSIVE HEADER MOVIL */
/* ========================= */

@media (max-width: 900px){

    .header{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }
     .circulo2{
        top:85px;
        
    }
    .circulo3{
        top:85px;
        
    }
    .circulo{
        top:80px;
        
    }

    .logo img{
        height:110px !important;
    }

    .nav{
        width:100%;

        display:flex;
        flex-direction:column;

        align-items:center;
        justify-content:center;

        gap:15px;

        position:static;
        left:auto;

        padding:0;
    }

    .nav a{
        font-size:14px;
        text-align:center;
        line-height:1.5;
    }

    .header .nav a{
        top:0;
    }

    .nav .btn{
        width:100%;
        max-width:320px;

        margin:0;

        text-align:center;
    }

    .btn-secundario{
        position:static;

        width:100%;
        max-width:320px;

        right:auto;
        top:auto;

        margin-top:10px;
    }

}