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

body{
    background:#020617;
    color:#fff;
    font-family:'Rajdhani',sans-serif;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    width:100%;
    background:#030817;
    border-bottom:1px solid rgba(255,255,255,0.05);
    position:fixed;
    top:0;
    left:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-family:'Orbitron',sans-serif;
    font-size:38px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

.logo span{
    color:#1976ff;
}

.menu{
    display:flex;
    gap:40px;
}

.menu a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
}

.menu a:hover{
    color:#1976ff;
}

.btn-contact{
    background:linear-gradient(90deg,#ff1744,#2962ff);
    padding:12px 28px;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

/* HERO */

.hero{
	 padding-top:10px;
	   margin-top:0;
    position:relative;
    min-height:60vh;
    background:url('../img/banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(1,5,20,0.82);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero h1{
    font-family:'Orbitron',sans-serif;
    font-size:72px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero h1 span{
    color:#ff1744;
}

.hero p{
    font-size:28px;
    color:#cbd5e1;
    margin-bottom:40px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(90deg,#ff1744,#2962ff);
    padding:16px 38px;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #2962ff;
    padding:16px 38px;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

/* SECTIONS */

.services,
.process,
.benefits{
    padding:100px 0;
}

.services{
    background:#040b1f;
}

.process{
    background:#020617;
}

.benefits{
    background:#071226;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Orbitron',sans-serif;
    font-size:48px;
    margin-bottom:10px;
}

.section-title p{
    color:#94a3b8;
    font-size:22px;
}

/* GRID */

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

.card{
    background:#071226;
    padding:40px 30px;
    border-radius:20px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
    text-align:center;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#2962ff;
}

.card img{
    width:80px;
    margin-bottom:20px;
}

.card h3{
    font-size:30px;
    margin-bottom:15px;
}

.card p{
    color:#94a3b8;
    font-size:20px;
    line-height:1.6;
}

/* PROCESS */

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

.step{
    background:#071226;
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.step span{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(90deg,#ff1744,#2962ff);
    border-radius:50%;
    font-size:36px;
    font-weight:700;
    margin:auto auto 20px;
}

.step h3{
    font-size:30px;
    margin-bottom:15px;
}

.step p{
    font-size:20px;
    color:#94a3b8;
}

/* CTA */

.cta{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(90deg,#020617,#071226);
}

.cta h2{
    font-family:'Orbitron',sans-serif;
    font-size:54px;
    margin-bottom:20px;
}

.cta p{
    font-size:24px;
    color:#cbd5e1;
    margin-bottom:40px;
}

footer{
    padding:40px 0;
    text-align:center;
    background:#020617;
    color:#64748b;
    font-size:18px;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:22px;
}

.menu{
    display:none;
}

.logo{
    font-size:28px;
}

.section-title h2{
    font-size:36px;
}

.cta h2{
    font-size:38px;
}

}
/* HERO SLIDER */

.hero-slider{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,#0f172a,#020617 60%);
    padding-top:120px;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        90deg,
        rgba(1,5,20,0.95),
        rgba(1,5,20,0.70)
    );
    z-index:1;
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
}

.hero-left{
    animation:fadeLeft 1s ease;
}

.hero-mini{
    color:#ff1744;
    font-size:22px;
    letter-spacing:2px;
    display:block;
    margin-bottom:20px;
}

.hero-left h1{
    font-family:'Orbitron',sans-serif;
    font-size:78px;
    line-height:1.05;
    margin-bottom:30px;
    text-transform:uppercase;
}

.hero-left h1 span{
    color:#1976ff;
}

.hero-left p{
    font-size:28px;
    line-height:1.5;
    color:#cbd5e1;
    margin-bottom:40px;
    max-width:700px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(90deg,#ff1744,#2962ff);
    padding:18px 40px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid #2962ff;
    padding:18px 40px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#2962ff;
}

.hero-right{
    text-align:center;
    animation:fadeRight 1s ease;
}

.hero-right img{
    width:100%;
    max-width:850px;
    filter:
    drop-shadow(0 0 40px rgba(41,98,255,0.4));
}

/* ANIMACIONES */

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/* MOBILE */

@media(max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-left h1{
    font-size:52px;
}

.hero-left p{
    font-size:22px;
    margin:auto auto 40px;
}

.hero-buttons{
    justify-content:center;
}

.hero-right{
    margin-top:40px;
}

}

@media(max-width:600px){

.hero-left h1{
    font-size:38px;
}

.hero-left p{
    font-size:20px;
}

.hero-mini{
    font-size:18px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

}
/* SLIDER */

.main-slider{
    width:100%;
    overflow:hidden;
    margin-top:10px;
    background:#020617;
	position:relative;
}

.main-slider img{
    width:100%;
    display:block;
    object-fit:cover;
}
/* SLIDER */


/* EFECTO BRILLO */

.main-slider::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transform:skewX(-25deg);
    animation:shine 6s infinite;
    z-index:2;
}

/* IMAGEN */

.main-slider img{
    width:100%;
    display:block;
    object-fit:cover;

    animation:
    zoomSlider 12s ease-in-out infinite alternate,
    fadeSlider 1.5s ease;

    transition:0.4s;
}

/* ANIMACIONES */

@keyframes zoomSlider{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.05);
    }

}

@keyframes fadeSlider{

    from{
        opacity:0;
        transform:scale(1.08);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

@keyframes shine{

    0%{
        left:-100%;
    }

    100%{
        left:150%;
    }

}

/* MOBILE */

@media(max-width:768px){

.main-slider{
    margin-top:70px;
}

}
/* CIUDADES */

.cities-section{
    padding:100px 0;
    background:
    linear-gradient(
        180deg,
        #020617,
        #071226
    );
}

.cities-title{
    text-align:center;
    margin-bottom:60px;
}

.cities-title h2{
    font-family:'Orbitron',sans-serif;
    font-size:52px;
    margin-bottom:15px;
    color:#fff;
}

.cities-title p{
    font-size:24px;
    color:#94a3b8;
    max-width:900px;
    margin:auto;
}

/* GRID */

.cities-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;

}

/* ITEMS */

.cities-grid a{

    padding:18px 34px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-size:22px;

    font-weight:600;

    background:
    linear-gradient(
        90deg,
        rgba(255,23,68,0.15),
        rgba(41,98,255,0.15)
    );

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

    transition:0.35s;

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(10px);

}

/* HOVER */

.cities-grid a:hover{

    transform:
    translateY(-5px)
    scale(1.05);

    background:
    linear-gradient(
        90deg,
        #ff1744,
        #2962ff
    );

    box-shadow:
    0 0 25px rgba(41,98,255,0.35);

}

/* EFECTO BRILLO */

.cities-grid a::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );

    transform:skewX(-25deg);

    transition:0.7s;

}

.cities-grid a:hover::before{
    left:160%;
}

/* MOBILE */

@media(max-width:768px){

.cities-title h2{
    font-size:34px;
}

.cities-title p{
    font-size:20px;
}

.cities-grid a{
    font-size:18px;
    padding:15px 24px;
}

}
 /* FONDO */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* POPUP */
.popup{
    width:90%;
    max-width:450px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    animation:popupShow .3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

@keyframes popupShow{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.popup-header{
    background:#002b5c;
    color:#fff;
    padding:20px;
    text-align:center;
    position:relative;
}

.popup-header h2{
    margin:0;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}

.popup-body{
    padding:25px;
}

.popup-body input,
.popup-body textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
}

.popup-body textarea{
    resize:none;
    height:120px;
}

.btn-enviar{
    width:100%;
    background:#ff6600;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

.btn-enviar:hover{
    background:#e65c00;
}

/* MENSAJES */
.mensaje{
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    display:none;
}

.ok{
    background:#d4edda;
    color:#155724;
}

.error{
    background:#f8d7da;
    color:#721c24;
}

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

/* HEADER */
header{
    width:100%;
    background:#020b22;
    border-bottom:1px solid rgba(255,255,255,.08);
    position:sticky;
    top:0;
    z-index:9999;
}

/* CONTENEDOR */
.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/* LOGO */
.logo img{
    width:350px;
    max-width:100%;
}

/* MENU */
.menu{
    display:flex;
    align-items:center;
    gap:35px;
}

/* LINKS */
.menu a{
    text-decoration:none;
    color:#d7d7d7;
    font-size:20px;
    font-weight:500;
    transition:.3s;
    font-family:'Rajdhani',sans-serif;
	
}

.menu a:hover{
    color:#ffffff;
}

/* BOTON */
.btn-contactar{
    background:linear-gradient(90deg,#ff2e63,#3a7bff);
    color:#fff !important;
    padding:12px 28px;
    border-radius:40px;
    font-weight:bold;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-contactar:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(58,123,255,.35);
}

/* MENU MOVIL */
.menu-toggle{
    display:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

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

    .menu-toggle{
        display:block;
    }

    .menu{

        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#020b22;

        flex-direction:column;
        align-items:flex-start;

        padding:30px;

        gap:25px;

        display:none;

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

    }

    .menu.active{
        display:flex;
    }

    .menu a{
        width:100%;
        font-size:18px;
    }

    .btn-contactar{
        text-align:center;
    }

    .logo img{
        width:230px;
    }

}