*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#000;

    overflow-x:hidden;

    font-family:'Poppins',sans-serif;
}

/* =========================
HEADER
========================= */

header{

    width:100%;

    position:absolute;

    top:0;
    left:0;

    z-index:100;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 70px;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.7),
        transparent
    );
}

/* =========================
LOGO
========================= */

.logo img{

    width:120px;
}

/* =========================
NAV
========================= */

nav{

    display:flex;

    gap:45px;
}

nav a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    transition:.3s;
}

nav a:hover{

    color:#ff0000;
}

/* =========================
BANNER
========================= */

.banner{

    width:100%;

    height:78vh;

    position:relative;

    overflow:hidden;
}

/* =========================
IMAGEN
========================= */

.banner-img{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;
}

/* =========================
OVERLAY
========================= */

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.95) 10%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.92) 100%
    );

    z-index:1;
}

/* =========================
LUZ ROJA
========================= */

.luces{

    position:absolute;

    width:100%;
    height:100%;

    background:
    radial-gradient(
        circle at center,
        rgba(255,0,0,.15),
        transparent 60%
    );

    z-index:2;
}

/* =========================
CONTENIDO
========================= */

.banner-contenido{

    position:absolute;

    top:55%;

    left:70px;

    transform:translateY(-50%);

    z-index:5;
}

.banner-contenido span{

    color:#ff0000;

    letter-spacing:8px;

    font-size:14px;

    font-weight:600;
}

.banner-contenido h1{

    color:white;

    font-size:120px;

    line-height:.9;

    margin-top:20px;

    font-family:'Teko',sans-serif;
}

.banner-contenido h1 strong{

    color:#ff0000;
}

.banner-contenido p{

    color:#d9d9d9;

    margin-top:25px;

    font-size:19px;

    line-height:1.7;

    max-width:550px;
}

/* =========================
BOTON
========================= */

.btn-banner{

    display:inline-block;

    margin-top:35px;

    background:#ff0000;

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.btn-banner:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 25px rgba(255,0,0,.5);
}

/* =========================
CONTACTO
========================= */

.contacto{

    width:100%;

    padding:110px 70px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    background:#050505;
}

/* =========================
INFO
========================= */

.info span{

    color:#ff0000;

    letter-spacing:7px;

    font-size:14px;
}

.info h2{

    color:white;

    font-size:85px;

    margin-top:10px;

    font-family:'Teko',sans-serif;

    line-height:1;
}

.info p{

    color:#d0d0d0;

    margin-top:20px;

    line-height:1.8;

    max-width:500px;
}

.dato{

    margin-top:35px;
}

.dato h3{

    color:#ff0000;

    margin-bottom:10px;

    font-size:20px;
}

/* =========================
FORMULARIO
========================= */

.formulario{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.formulario input,
.formulario textarea{

    width:100%;

    background:#111;

    border:2px solid rgba(255,0,0,.15);

    padding:20px;

    color:white;

    font-size:15px;

    border-radius:14px;

    outline:none;

    transition:.3s;
}

.formulario input:focus,
.formulario textarea:focus{

    border-color:#ff0000;

    box-shadow:
    0 0 15px rgba(255,0,0,.2);
}

.formulario textarea{

    height:180px;

    resize:none;
}

.formulario button{

    background:#ff0000;

    color:white;

    border:none;

    padding:20px;

    border-radius:14px;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.formulario button:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 25px rgba(255,0,0,.5);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:950px){

    header{

        flex-direction:column;

        gap:20px;

        padding:25px;
    }

    nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;
    }

    .banner-contenido{

        left:25px;
    }

    .banner-contenido h1{

        font-size:75px;
    }

    .contacto{

        grid-template-columns:1fr;

        padding:70px 25px;
    }

    .info h2{

        font-size:60px;
    }
}

@media(max-width:600px){

    .banner{

        height:70vh;
    }

    .banner-contenido h1{

        font-size:58px;
    }

    .banner-contenido p{

        font-size:15px;
    }

    .btn-banner{

        padding:15px 28px;
    }

    .info h2{

        font-size:48px;
    }
}