@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');

:root{
    --scroll-color: #a5a46d;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

html{
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body{
    background-color: black;
}

/*========================================== Inicio Scroll Bar ==========================================*/
    body::-webkit-scrollbar{
        width: 10px; /*0.5rem reduce el grosor*/ 
    }

    body::-webkit-scrollbar-track{
        background: #000000;
    }

    body::-webkit-scrollbar-thumb{
        background: var(--scroll-color);
        border-radius: 10px;
    }
/*========================================== Fin Scroll Bar ==========================================*/

/*========================================== Inicio Globales ==========================================*/
    a{
        text-decoration: none;
    }

    ul{
        list-style: none;
    }
/*========================================== Fin Globales ==========================================*/

/*========================================== Inicio Header ==========================================*/
    .page-header{
        position: fixed;
        width: 100%;
        height: 70px;
        background-color: transparent;

        transition: background-color .5s;
        z-index: 100;
    }

    .page-header .pogressbar{
        width: 0%;
        background: #FFE4B5;
        height: 5px;
    }

    .page-header .nav-menu{
        display: table;
        margin: auto;
        font-size: 2rem;
        margin-top: 0.9rem;
        height: auto;
        transition: margin-left .5s;
    }

    .nav-menu .ocultar{
        display: block;
        float: left;
    }

    .mostrar{
        top: 0vw !important;
        transition: all .9s ease;
    }

    .nav-menu ul li{
        float: left;
        margin: 0px 25px 0px 25px;
        padding: 2px;
        transition: all .3s;
    }

    .nav-menu ul li a{
        color: #fff;
        letter-spacing: 0.2rem;
        font-weight: 300;
    }

    .nav-menu ul li:hover{
        border-bottom: 4px #FFE4B5 solid;
        transition: all .2s;
    }

    .nav-menu img.logo{
        border-radius: 50%;
        float:left;
        display: block;
        margin-top: 130px;

        transition: width .5s, height .5s, margin-right .5s, margin-top .5s;
    }

    .nav-menu .logo{
        width: 40rem;
    }

/*=== ===*/
    .banner{
        border-bottom: 5px solid black;
        height: 100vh;

        position: relative;
    }

    .video_portada{
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: 0.7;
    }

    .video_mobile{
        display: none;
    }

    .banner .vertical-orientation {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        font-size: 4rem;
        font-weight: 300;
        color: #FFF;
        text-transform: uppercase;
        margin: 0 9rem;

        position: absolute; 
        right: 0px; 
        bottom: 34%
    }

    .banner .text {
        font-size: 5rem; 
        color: #fff; 
        margin-top: 500px;
        font-weight: 600;
        
        position: absolute; 
        bottom: 150px; 
        left: 700px;
    }

    .logo_mobile, .menu-mobile{
        display: none;
    }
/*--- ---*/
    .logo-wsp{
        position: fixed; 
        right: 25px; 
        bottom: 30px; 
        z-index: 2; 
    }
/*========================================== Fin Header ==========================================*/

/*=== Main Globales ===*/
    .contenedor{
        max-width: 1280px;
        width: 90%;
        margin: 0 auto;
    }

    h3, h2{
        text-align: center;
        text-transform: uppercase;
        font-family: 'Rajdhani', sans-serif;
        font-size: 80px;    
        font-weight: 800;
        line-height: 1em;
    }

    .imagenes{
        max-width: 100%;
    }

    .page-content{
        padding: 5rem 0;
    }

    .contacto input[type="submit"]{
        font-size: 15px;
        color: #fff;
        background: transparent;
        border: 2px solid rgb(186, 187, 106);
        border-radius: 6px;
        padding: 20px 8px;
        width: 225px;
        display: inline-block;

        text-align: center;
        font-weight: bold;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .contacto input[type="submit"]:hover{
        background-color: #f7c164;
    }

/*--- Boton de neon beige brillante ---*/
.btn-neon {
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    color: #FFE4B5;
    font-size: 20px;
    overflow: hidden;
    transition: 0.2s;

    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

.btn-neon:hover {
    background: #FFE4B5;
    color: #000; /* Contraste para el texto */
    box-shadow: 0 0 10px #FFE4B5, 0 0 40px #FFE4B5, 0 0 80px #FFE4B5;
    transition-delay: 0.75s;
}

.btn-neon span {
    position: absolute;
    display: block;
}

#span1 {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFE4B5);
}

.btn-neon:hover #span1 {
    left: 100%;
    transition: 0.8s;
}

#span3 {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #FFE4B5);
}

.btn-neon:hover #span3 {
    right: 100%;
    transition: 0.8s;
    transition-delay: 0.5s;
}

#span2 {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #FFE4B5);
}

.btn-neon:hover #span2 {
    top: 100%;
    transition: 0.8s;
    transition-delay: 0.25s;
}

#span4 {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #FFE4B5);
}

.btn-neon:hover #span4 {
    bottom: 100%;
    transition: 0.8s;
    transition-delay: 0.75s;
}

/* Boton de neon */

/*=== Main Globales ===*/

/*========================================== Inicio Main ==========================================*/
    .container-main{
        /* background-image: url('../img/home-6-background-img-1.jpg'); */
        background-repeat: no-repeat;
        background-position: 0 center;
        background-size: cover;

        width: 100%;
        height: auto;
        color: #fff;
    }

/*--------------------------- Inicio Nosotros ---------------------------*/
    .nosotros .contenedor-nosotros{
        margin: 5rem 0;
        display: flex;
        justify-content: space-around;
    }

    .nosotros .texto{
        width: 45%;
        margin-right: 50px;
    }

    .nosotros-info div img{
        width: 100%;

    }

    .nosotros-info{
        text-align: justify;
    }

    .nosotros .contenedor-nosotros .texto p{
        font-size: 1.7rem;
        margin: 1.3rem 0;
        line-height: 1.8;
        color: #b3b2b4;
        text-align: justify;
    }
/*--------------------------- Fin Nosotros ---------------------------*/

/*--------------------------- Inicio TrabajaConmigo ---------------------------*/
    .trabajar .contenedor-trabajar {
        margin: 3rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .trabajar .contenedor-trabajar .item{
        width: 40%;
        font-size: 1.7rem;
        text-align: center;
    }

    .trabajar ul li:nth-child(2){
        font-weight: bold;
        font-size: 1.9rem;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .trabajar ul li:nth-child(3){
        line-height: 31px;
        /* text-align: justify; */
    }
/*--------------------------- Fin TrabajaConmigo ---------------------------*/

/*--------------------------- Inicio Video+Noticias ---------------------------*/
    .video-content__source{
        width: 100%;
        height: 95vh;
        margin-bottom: -90px;
        overflow: hidden;
        display: block;
        background-color: black;

        position: relative;
    }

    .contenedor-video{
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .contenedor-video video{
        height: 100%;
        width: 100vw;
        object-fit: cover;
        top: 0;
        left: 0;
        opacity: .5;
    }

    .video-content .degradado{
        width: 100%;
        height: 300px;
        position: absolute;
        bottom: 0px;
        background: linear-gradient(rgba(255, 255, 255, 0),
        rgba(25, 15, 35,0.9));
    }

    .video-content__noticias{
        width: 1200px;
        max-width: 100%;
        margin: 0px auto;
        position: relative;
        min-height: 308px;
        margin-top: -350px;
    }

    .contenedor_noticias{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .noticia{
        /* width: 100%; */
        height: 245px;
        margin: 15px;
        justify-items: center;
        flex-wrap: wrap;
    }

    .noticia-image{
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-shadow: 0px 0px 10px #000;
        text-align: left;
        cursor: pointer;
        user-select: none;
        border-bottom: 2px solid #555;

        background-color: #333;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;

        display: flex;
        flex-direction: column-reverse;

        transition-property: all;
        transition-duration: .2s;
        transition-timing-function: ease-in-out;

        position: relative;
    }

    .noticia-image:hover{
        transform: scale(1.02);
        box-shadow: 0px 0px 30px #000;
        border-bottom: 2px solid #ff6046;
        z-index: 100;
    }

    .noticia .botom-gradiente{
        left: 0px;
        bottom: 0px;
        right: 0px;
        width: 100%;
        height: 100%;
        position: absolute;
        pointer-events: none;
    }

    .noticia .botom-gradiente div{
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(19, 23, 28, 0) 60%, 
                                    rgba(19, 23, 28, 0.733) 70%, 
                                    rgb(19, 23, 28) 90%);                            
    }

    .noticia-contenido{
        font-size: 18px;
        color: rgba(255,255,255,.7);
        z-index: 2;
        margin-left: 20px;
        margin-bottom: 0px;
        opacity: 0;
        transform: translateY(20px);
        height: 0px;
        transition-duration: .5s;
        transition-timing-function: ease;
        transition-property: height,opacity,transform;
    }

    .noticia-image:hover .noticia-contenido{
        height: 120px;
        opacity: 1;
        transform: translateY(0px);
    }

    .noticia-title{
        margin: 0px 10px 8px 20px;
        text-shadow: 0px 0px 10px #000;
        font-weight: bold;
        text-transform: none;
        letter-spacing: 0px;
        font-size: 24px;
        line-height: 115%;
        color: #fff;
        z-index: 2;
    }

    .noticia-fecha{
        color: rgba(255,255,255,.7);
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-left: 20px;
        margin-bottom: 8px;
        z-index: 2;
    }
/*--------------------------- Fin Video+Noticia ---------------------------*/

/*-- --*/
    .contador-animado{
        text-align: center;
        display: flex;
        justify-content: space-around;
        text-transform: uppercase;
    }

    .contador-animado__item div{
        font-size: 80px;
        font-weight: 700;
    }

    .contador-animado__item h4{
        font-size: 25px;
    }
/*-- --*/

/*--------------------------- Inicio Precio Venta Cuentas ---------------------------*/
    /* Inicio Venta cuenta Acoordeon */
    .contenedor-ventacuenta-accordeon{
        background: transparent;
        padding: 10px;
    }

    .contenedor-ventacuenta-accordeon .ventacuenta-accordeon__item{
        background-color: transparent;
        margin: 0 0 20px;
        padding: 10px;
    }

    .ventacuenta-accordeon__item .cabecera{
        background-color: transparent;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border: 3px solid #2f184c;
        cursor: pointer;
    }

    .ventacuenta-accordeon__item h2{
        font-size: 2.5rem;
        color: #e6aa43;
    }

    .ventacuenta-accordeon__item .contenido{
        background-color: #22152c;
        padding: 16px;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
        align-items: center;

        height: 0;
        padding: 0;
        overflow: hidden;
        transition: all .9s ease;
    }

    .ventacuenta-accordeon__item .contenido .contenido__item{
        width: 337px;
        height: 270px;
        background-color: #523f04;

        overflow: hidden;        
    }

    .ventacuenta-accordeon__item .contenido .contenido__item > img{
        width: 100%;
        height: 90%;
    }

    .ventacuenta-accordeon__item .contenido .contenido__item .elementos-item{
        font-size: 2rem;
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        position: relative;
        background: rgba(0, 0, 0, 0.7);
        /* top: 0; */
        transition: all .3s;
    }

    .contenido__item:hover .elementos-item{
        top: -100%;
    }

    .btn-modal{
        display: none;
    }

    .contenido__item:hover .elementos-item .lbl-modal{
        background: #dd3333;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
    }   

    #btn-modal:checked ~ .modal, #btn-modal-2:checked ~ .modal, #btn-modal-3:checked ~ .modal, #btn-modal-4:checked ~ .modal, #btn-modal-5:checked ~ .modal,
    #btn-modal-6:checked ~ .modal, #btn-modal-7:checked ~ .modal, #btn-modal-8:checked ~ .modal, #btn-modal-9:checked ~ .modal, #btn-modal-10:checked ~ .modal,
    #btn-modal-11:checked ~ .modal, #btn-modal-12:checked ~ .modal, #btn-modal-13:checked ~ .modal, #btn-modal-14:checked ~ .modal, #btn-modal-15:checked ~ .modal{
        opacity: 1;
        visibility: visible;
    }

    .contenido__item .elementos-item .modal{
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100vh;

        position: fixed;
        top: 0;
        left: 0;

        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 500ms ease;
        opacity: 0;
        visibility: hidden;
        z-index: 300
    }

    .modal .modal-contenido{
        width: 100%;
        height: 90%;
        margin: auto;

        box-shadow: 1px 7px 25px rgba(0, 0, 0, 0.7);

        transition: all 500ms ease;

        position: relative;
        top: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-contenido .modal-contenido__img{
        width: 40%;
        height: auto;
        margin: 20px auto;
        overflow: hidden;
        position: relative;
    }

    .modal-lupa{
        width: 100%;
        height: 100%;
        background-color: rgba(32,39,49,0.8);
        position: absolute;
    }
    
    .modal-lupa a{
        width: 100%;
        height: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-contenido label{
        position: absolute;
        top: 10px;
        right: 10px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
    }

    .modal-contenido__img:hover .modal-lupa{
        top: 0px;
        cursor: pointer;
    }
    /* Fin Venta cuenta Acoordeon */
/*--------------------------- Fin Precios Venta Cuentas ---------------------------*/

/*--------------------------- Inicio Precios Items ---------------------------*/
    .precios-items .contenedor-items-precios{
       width: 100%;
       background-color: rgba(0,0,0,0.2);
       

       border-radius: 15px;
       margin: 20px 0;
    }

    .categoria-items{
/*         display: flex;
        flex-direction: column; */
        padding: 15px;
        height: 205px;
        overflow-y: auto;
        overflow-x: hidden;
 
        scroll-snap-type: y mandatory; 
    }

    .categoria-items::-webkit-scrollbar{
        width: 7px; /*0.5rem reduce el grosor*/ 
    }

    .categoria-items::-webkit-scrollbar-track{
        background: #000000;
    }

    .categoria-items::-webkit-scrollbar-thumb{
        background: #404040;
        border-radius: 10px;
    }

    .contenedor-items-precios h4{
        font-size: 35px;
        margin-left: 10px;
    }

    .items{
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-evenly; */
    }

    .items-contenido{
        margin-right: auto;
        max-width: 165px;
        border: 2px solid #2d2d2d;
        margin-bottom: 20px;

        scroll-snap-align: center;
    }

    .items-contenido p{
        text-align: center;
        font-size: 1.6rem;
    }

    .items-contenido__img{
        transition: .3s ease all;
        position: relative;
    }

    .items-contenido__img img{
        width: 100%;
        height: 100%;
    }  

    
    .items-contenido__img p{
        margin: auto;  
        color: #fff;
        text-align: center;
        font-size: 15px;
        
        line-height: 107px; /* igual height de la imagen */
     
        background: #000;
        transition: opacity .4s linear;
        cursor: pointer;  
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        z-index: 1000;
    }

    .items-contenido__img:hover{
        transform: scale(1.1);
        transition: .3s ease all;
    }

    .items-contenido__img:hover p{
        opacity: .75;  
    }
    
    .items-contenido__nombre{
        background-color: #2d2d2d;
        padding: 3px 0;
        height: 49px;
    }

    .items-contenido__precio{
        background-color: #298d40;
        padding: 4px 0;
    }

    .items-steam{
        font-size: 2rem;
        height: 50px;
        display: flex;
        justify-content: space-around;
    }

    .items-steam p{
        align-self: center;
    }

    .items-steam a{
        text-align: center;
        width: 250px;
        padding: 5px;
        background-color: #000000;
        border-radius: 10px;
        transition: all .3s;
    }

    .items-steam a i{
        color: #fff;
        font-size: 4rem;
        width: 100%;
        transition: all .3s;
    }

    .items-steam a:hover, .items-steam i:hover {
        color: black;
        background-color: #fff;
        transition: all .3s;
    }
/*--------------------------- Fin Precios Items ---------------------------*/

/*--------------------------- Inicio Precios Boosting ---------------------------*/
    .precios-boosting{
        margin: 3rem 0;
        color: #fff;
    }

    .slider-content {
        padding: 20px 0;
        width: 85%;
        margin: 0 auto;
    }

    .slider-content p{
        font-size: 1.7rem;
        color: #9d979d;
        text-align: center;
    }
    
    .slider-content__images{
        display: flex;
        justify-content: space-around;
    }

    .contenido-medalla{
        text-align: center;
    }

    .contenido-medalla__img{
        width: 185px;
        height: 175px;
        text-align: center;
    }
    
    .slider-content__images label{
        display: block;
        margin: 10px 0;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        font-size: 17px;
    }
    
    .slider-content__images input{
        padding: 6px 8px;
        outline: none;
        border-radius: 15px;
        /* line-height: 1.5; */
        
        width: 132px;
        height: 64px;
        font-size: 35px;
        font-weight: 500;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.7);
        border: 1px solid #2e363c;
        text-align: center;

        appearance: none;
    }

    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none; 
    }
    
    .slider-content__rangeslider{
        margin: 40px 0;
        position: relative;
    }
    
    .slider-content__rangeslider input{
        -webkit-appearance: none;
        width: 100%;
        height: 12px;
        background: #b3b44c;
        outline: none;
        opacity: 0.7;
        border-radius: 10px;
        transition: opacity .2s;
    }

    .slider-content__rangeslider .range:hover {
        opacity: 1;
    }

    .range::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 70px;
        height: 70px;
        /* background: #dd3333; */
        background: url('/img/1-1.png');
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .range::-moz-range-thumb {  
        background: url('/img/1-1.png');
    }
    
    .slider-content__rangeslider .bubble{
        display:block;
        background: #444;
        color: white;
        margin: 15px 0;
        padding: 5px 12px;
        position: absolute;
        border-radius: 4px;
        left: 30px;
        transform: translateX(-50%);
        font-size: 16px;
    }
    
    .slider-content__rangeslider .bubble::after{
        content: "";
        position: absolute;
        width: 2px;
        height: 2px;
        background: black;
        top: -1px;
        left: 50%;
        font-size: 16px;
    }
    
    .slider-content__pago {
        text-align: center;
        font-size: 45px;
        line-height: 45px;
        margin-top: 65px;
    }

    .slider-content__pago .pago-divisa{
        display: inline-block;
        width: 49%;
        text-align: center;
    }

    .slider-content__pago .pago{
        font-size: 5rem;
        color: #fff;
    }
    
    .slider-content__pago div img{
        width: 35px;
        height: 35px;
    }
/*--------------------------- Fin Precios Boosting ---------------------------*/

/*--------------------------- Inicio Metodos de Pagos ---------------------------*/
    .metodos-pago {
        display: flex;
        justify-content: space-around;
        align-content: center;
    }

    .metodos-pago div{
        margin-top: 50px;
        width: 150px;
        text-align: center;
    }

    .metodos-pago div img{
        max-width: 100%;
        max-height: 125px;
    }

    .metodos-pago div p{
        font-size: 1.8rem;
        text-align: center;
    }
/*--------------------------- Fin Metodos de Pagos ---------------------------*/

/*--------------------------- Inicio Clientes ---------------------------*/
    /* Carrousel */
    .contenedor .owl-nav .owl-next,
    .contenedor .owl-nav .owl-prev{
        position: absolute;
        top: 40%;
        padding: 0;
        border: 0;
        background: 0 0;
        appearance: none;
    }

    .contenedor .item{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contenedor .item img{
        border-radius: 10px;
    }

    button.owl-prev{
        left: 30px;
        font-size: 40px !important;
    }

    button.owl-next{
        right: 30px;
        font-size: 40px !important;
    }

    .owl-carousel .owl-item img{
        width: auto !important;
        opacity: 1;
    }

    span{
        color: #fff;
    }
    /* Carrousel */
/*--------------------------- Fin Clientes ---------------------------*/

/*--------------------------- Inicio Comentarios ---------------------------*/
.comentarios-contenedor{
    min-height: 0;
    margin-top: 17px;
    display: flex;
    flex-direction: column;

    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, 
                        black 20%, black 80%, transparent 100%);
}

.contenedor .fila-comentario{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 150px;
    
    animation-duration: 10s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: animateLeft;
  }

.fila-comentario a{
    background: tomato;
    min-width: 255px;
    width: 500px;
    height: 140px;
    margin-right: 10px;
    box-shadow: 1px 1px 4px #000;
    z-index: 5;
    text-align: center;

    transition-timing-function: ease-out;
    transition-duration: .2s
}

.fila-comentario a:hover{
    transform: scale(1.1);
}
/*--------------------------- Fin Comentarios ---------------------------*/

/*--------------------------- Inicio Contacto ---------------------------*/
    .contacto form{
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 50%;
        margin: auto;
    }
    
    .img-contacto{
        width: 30%; 
        margin: 0 auto;
    }

    .contacto form input[type="text"], input[type="email"]{
        background: #22152c;
        outline: none;
        width: 100%;
        margin-bottom:  px;
        padding: 18px 0px;
        border: 0;
        font-size: 1.7rem;
        color: #fff;
    }

    /*--- Animacion hover ---*/
    .contacto form .anima{
        position: relative;
        width: 49%;
        margin-bottom: 15px;
    }

    .contacto form .anima::before{
        content: "";
        display: block;
        width: 0%;
        height: 3px;
        transition: all .3s;
        background: #d3b843;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .contacto form .anima:hover::before{
        width: 100%;
    }
    /*--- ---*/

    .contacto form textarea{
        background: #22152c;
        outline: none;
        padding: 18px 0;
        border: 0;
        font-size: 17px;
        margin-bottom: 40px;
        width: 100%;
    }

    .contacto input[type="submit"]{ 
        width: 200px;
        margin: auto;
    }
/*--------------------------- Fin Contacto ---------------------------*/

/*========================================== Fin Main ==========================================*/

/*  */
.animado{
    opacity: 0;
    transition: all 0.6s;
}

.mostrarArriba{
    animation: mostrarArriba 1s;
}

.mostrarCostado{
    animation: mostrarCostado 1s;
}

@keyframes mostrarArriba {
    0%{
        transform: translateY(60px);
    }

    100%{
        transform: translateY(0);
    }
}

@keyframes mostrarCostado {
    0%{
        transform: translateX(-60px);
    }

    100%{
        transform: translateX(0);
    }
}

@keyframes animateLeft{
    0%{
      transform: translateX(0px);
    }
    
    100%{
      transform: translateX(-50%);
    }
}

/* Estructura general */
.venta-cuentas-section {
  padding: 100px 20px;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.titulo-seccion {
  text-align: center;
  font-size: 4rem;
  color: bisque;
  margin-bottom: 1.5rem;
}

.subtitulo-seccion {
  text-align: center;
  font-size: 1.6rem;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.subtitulo-seccion a {
  color: #ffb347;
  font-weight: bold;
  text-decoration: none;
}

/* Grid */
.contenedor-ventacuenta-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Animación de entrada */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animación de resplandor */
@keyframes resplandor {
  0% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  }
}

/* Card */
.ventacuenta-card {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  border-radius: 15px;
  width: 250px;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  animation: fadeUp 1s ease forwards, resplandor 3s ease-in-out infinite;
  opacity: 0;
  transition: transform 0.3s ease;
}

/* Hover opcional */
.ventacuenta-card:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Imagen */
.card-header img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.9rem;
  color: #ffd700;
  margin: 0;
}

.card-body {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {

  

  .ventacuenta-card {
    width: 180px;
    padding: 2rem;
  }

  .card-header img {
    width: 80px;
    height: 80px;
  }

  .card-header h3 {
    font-size: 1.9rem;
  }

  .card-body {
    font-size: 1.5rem;
  }

  .titulo-seccion {
    font-size: 3.3rem;
  }

  .subtitulo-seccion {
    font-size: 1.9rem;
  }
}
    
/*****************************************/

.beneficios-premium {
  background: #000000;
  color: #f0f0f0;
  padding: 100px 30px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header h2 {
  font-size: 4rem;
  color: #ffe4b5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.header .lead {
  font-size: 2rem;
  color: #cccccc;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.benefit-item {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.icon {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.gold { color: gold; }
.bronze { color: #d2a679; }
.green { color: #71e05c; }

.benefit-item:hover {
  transform: translateY(-6px);
}

.benefit-item h3 {
  color: #f5d7ac;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.benefit-item p {
  font-size: 1.7rem;
  color: #ddd;
  line-height: 1.6;
}

.example-box {
  background: #202020;
  border-left: 5px solid #e3b97f;
  padding: 2rem;
  font-size: 1.6rem;
  margin: 3rem auto 4rem auto;
  max-width: 650px;
  color: #f7d6a6;
  line-height: 1.6;
}

.features {
  margin-bottom: 4rem;
}

.features h3 {
  font-size: 2rem;
  color: #f5d7ac;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.features li {
  font-size: 1.6rem;
  margin: 1rem 0;
  position: relative;
  padding-left: 2rem;
  color: #dddddd;
  line-height: 1.6;
}

.features li::before {
  content: "✓";
  color: #71e05c;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.4rem;
}

.cta-box {
  text-align: center;
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.6;
}

.cta-box a {
  color: #f5d7ac;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #f5d7ac;
  transition: 0.2s;
}

.cta-box a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .header h2 {
    font-size: 3rem;
  }

  .header .lead,
  .benefit-item p,
  .features li,
  .cta-box {
    font-size: 1.5rem;
  }

  .benefit-item h3 {
    font-size: 1.8rem;
  }

  .icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header h2 {
    font-size: 2.9rem;
  }

  .header .lead {
    font-size: 1.6rem;
  }

  .benefit-item {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .benefit-item h3 {
    font-size: 1.6rem;
  }

  .benefit-item p {
    font-size: 1.6rem;
  }

  .features li {
    font-size: 1.6rem;
    
  }

  .cta-box {
    font-size: 1.6rem;
  }
}



/******************************************/


.compra-cuentas-premium {
  background-color: #000;
  color: #e0e0e0;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}



.header h2 {
  font-size: 4.5rem;
  color: bisque;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.lead {
  font-size: 1.9rem;
  margin-bottom: 3rem;
  color: #ddd;
}

.destacado {
  color: #ffd700;
  font-weight: 700;
}

.section-title {
  font-size: 2.4rem;
  color: #f5d7ac;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.gold { color: gold; }
.green { color: #71e05c; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 10px;
}

.card {
  
  background: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  color: #ddd;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  min-height: 120px;
  user-select: none;
}

.card:hover {
    cursor: pointer;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
}

.icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #71e05c;
  transition: color 0.3s ease;
}

.card:hover .icon {
  color: gold;
}

.contacto-grid .card {
  cursor: pointer;
}

.contact-card p {
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
  color: #f5d7ac;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.btn-link:hover {
  background-color: #ffd700;
  color: #000;
  box-shadow: 0 0 8px #ffd700aa;
}

.whatsapp-icon {
  color: #25d366;
  font-size: 3.6rem;
}

.whatsapp-link {
  color: #25d366;
  border-color: #25d366;
}

.whatsapp-link:hover {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 0 12px #25d366aa;
}

.pago {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #75cc3b;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pago i {
  font-size: 2.5rem;
  color: gold;
}

/* Animación de fade-in */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cards-grid .card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.cards-grid .card:nth-child(1) { animation-delay: 0.1s; }
.cards-grid .card:nth-child(2) { animation-delay: 0.25s; }
.cards-grid .card:nth-child(3) { animation-delay: 0.4s; }
.cards-grid .card:nth-child(4) { animation-delay: 0.55s; }

/* Responsive */
@media (max-width: 600px) {
  .header h2 {
    font-size: 3.4rem;
  }
  .lead {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .card {
    font-size: 1.6rem;
    min-height: auto;
    padding: 1.4rem 1rem;
  }
  .icon {
    font-size: 2.4rem;
  }
  .btn-link {
    font-size: 1.5rem;
    padding: 0.4rem 1rem;
  }
  .pago {
    font-size: 1.5rem;
  }
}

/**************************/

/* Imagen base */
.imagen-trabajo {
  width: 300px;
  border-radius: 12px;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* Azul */
@keyframes resplandorAzul {
  0%, 100% {
    filter: drop-shadow(0 0 8px #00f4ff) drop-shadow(0 0 12px #00bfff);
  }
  50% {
    filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 20px #33ccff);
  }
}
.resplandor-interno-azul {
  animation-name: resplandorAzul;
}

/* Amarillo */
@keyframes resplandorAmarillo {
  0%, 100% {
    filter: drop-shadow(0 0 8px #ffe44d) drop-shadow(0 0 12px #ffcc00);
  }
  50% {
    filter: drop-shadow(0 0 15px #ffff66) drop-shadow(0 0 20px #ffd633);
  }
}
.resplandor-interno-amarillo {
  animation-name: resplandorAmarillo;
}

/* Naranja */
@keyframes resplandorNaranja {
  0%, 100% {
    filter: drop-shadow(0 0 8px #ff944d) drop-shadow(0 0 12px #ff6f00);
  }
  50% {
    filter: drop-shadow(0 0 15px #ffaa33) drop-shadow(0 0 20px #ff7f00);
  }
}
.resplandor-interno-naranja {
  animation-name: resplandorNaranja;
}

.medalla-resplandor {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
  animation: resplandorMedalla 2.8s infinite ease-in-out;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.2));
}

/* Animación resplandor tipo mágico */
@keyframes resplandorMedalla {
  0%, 100% {
    filter: drop-shadow(0 0 6px #ffcc00)
            drop-shadow(0 0 12px #ffaa00)
            drop-shadow(0 0 18px #ff9900);
  }
  50% {
    filter: drop-shadow(0 0 10px #ffee58)
            drop-shadow(0 0 16px #ffc107)
            drop-shadow(0 0 24px #ff9800);
  }
}



/* Responsive */
@media (max-width: 768px) {
  .imagen-trabajo {
    width: 90%;
  }
  .subtitulo {
    font-size: 1.9rem;
  }
  .descripcion {
    font-size: 1.9rem;
  }
}


/* Contenedor general */
.seccion-oscura {
  background-color: #000000;
  padding: 100px 20px;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contenedor card y animación */
.contenedor-card-mesa {
  max-width: 1100px;
  margin: 0 auto;
}

.animado-desde-derecha {
  opacity: 0;
  transform: translateX(40px);
  animation: desdeDerecha 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes desdeDerecha {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Card con flexbox */
.card-mesa {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background-color: #121212;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
  padding: 40px;
}

/* Texto */
.card-texto {
  flex: 1 1 420px;
}

.card-texto h3 {
  font-size: 3.9rem;
  color: bisque;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-texto h3 i {
  color: bisque;
  font-size: 2.8rem;
}

/* Párrafos */
.descripcion {
  font-size: 1.9rem;
  line-height: 1.5;
  margin: 1.2rem 0;
  color: #e0e0e0;
}

/* Lista con íconos */
.lista-iconos {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.lista-iconos li {
  flex: 1 1 180px;
  font-size: 1.8rem;
  color: rgb(233, 189, 135);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.lista-iconos li i {
  color: rgb(233, 189, 135);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 6px rgb(233, 189, 135));
  animation: resplandorNaranja 3s ease-in-out infinite;
}

/* Precio */
.precio {
  font-size: 2rem;
  color: #75cc3b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Imagen */
.card-imagen {
  flex: 1 1 450px;
  text-align: center;
}

.card-imagen img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease;
  cursor: default;
}

.card-imagen img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* Animación resplandor naranja para iconos */
@keyframes resplandorNaranja {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgb(233, 189, 135));
  }
  50% {
    filter: drop-shadow(0 0 14px rgb(255, 203, 129));
  }
}

/* Responsive general */
@media (max-width: 900px) {
  .card-mesa {
    flex-direction: column;
    padding: 30px 20px;
  }

  .card-texto, .card-imagen {
    flex: 1 1 100%;
    text-align: center;
  }

  .card-texto h3 {
    font-size: 2.5rem;
    justify-content: center;
  }

  .descripcion {
    font-size: 1.9rem;
  }

  .lista-iconos {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .lista-iconos li {
    flex: none;
    font-size: 1.6rem;
    justify-content: center;
  }

  .precio {
    font-size: 1.8rem;
  }

  .card-imagen img {
    max-width: 90%;
  }
}

/* Ajustes para móviles más pequeños */
@media (max-width: 480px) {
  .card-texto h3 {
    font-size: 2.5rem;
  }

  .descripcion, .lista-iconos li {
    font-size: 1.9rem;
  }

  .precio {
    font-size: 1.6rem;
  }
}


/*************************/


.vision-section {
  background-color: #000;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.contenedor {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.vision-title {
  font-size: 3.9rem;
  color: bisque;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Contenedor de cards flex */
.vision-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card base */
.vision-card {
  background: #121212;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow:
    0 0 10px rgba(0, 188, 212, 0.5),
    0 4px 15px rgba(0, 188, 212, 0.3);
  flex: 1 1 280px;
  color: #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

/* Hover efecto resplandor */
.vision-card:hover {
  box-shadow:
    0 0 25px #00BCD4,
    0 0 40px #00BCD4,
    0 10px 30px rgba(0, 188, 212, 0.7);
  transform: translateY(-6px);
}

.vision-card h4 {
  font-size: 3rem;
  color: #00BCD4;
  margin-bottom: 1rem;
  font-weight: 700;
}

.vision-card ul {
  list-style: disc inside;
  font-size: 1.8rem;
  color: #ccc;
  margin: 0;
  padding-left: 1rem;
}

.vision-card p {
  font-size: 1.9rem;
  line-height: 1.6;
  margin: 0;
}

.main-card p {
  font-weight: 600;
}

.final-card p {
  font-style: italic;
  color: #a0dff0;
  font-size: 1.8rem;
}
.icon-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.8rem;
  color: #ccc;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.icon-list li i {
  color: #00BCD4;
  font-size: 2.2rem;
  min-width: 30px;
  text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
  .vision-cards {
    flex-direction: column;
    gap: 2rem;
  }
  .vision-card {
    flex: 1 1 auto;
    text-align: center;
  }
  .vision-card ul {
    text-align: left;
    padding-left: 1.5rem;
    display: inline-block;
  }
}
