* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
}

/* HERO */

.hero {
    max-height: auto;

    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../img/banner_1.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
}

/* NAVBAR */

.navbar {
    max-width: 1500px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 80px;
}

.logo img {
    height: 70px;
}

.menu {
    display: flex;
    gap: 45px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #ff0000;
}

/* HERO CONTENT */

.hero-content {
    max-width: 1500px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    min-height: calc(100vh - 120px);

    padding: 0 80px;
}

.hero-text {
    width: 50%;
    max-width: 700px;
}

.tag {
    color: #ff0000;
    font-size: 14px;
    letter-spacing: 3px;
}

.hero-text h1 {
    font-size: 45px;
    line-height: .95;
    margin: 25px 0;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #fff;
}

.hero-text h1 span {
    display: block;

    background: linear-gradient(90deg,
            #ff0000,
            #ff3d3d,
            #ff7070);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 span {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, .5));
}

.hero-text p {
    color: #ccc;
    font-size: 18px;
    max-width: 700px;
}

/* BOTONES */

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: #ff0000;
    color: white;
}

.btn-primary:hover {
    background: #d60000;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #444;
    color: white;
}

.btn-secondary:hover {
    border-color: #ff0000;
}

/* FEATURES */

.features{
    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:15px;

    max-width:700px;
}

.feature{

    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:10px 8px;

    border-radius:16px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;
}

.feature:hover{

    transform:translateY(-5px);

    border-color:rgba(255,0,0,.35);

    box-shadow:
        0 10px 30px rgba(255,0,0,.15);
}

.feature i{

    font-size:30px;

    color:#ff2b2b;

    margin-bottom:12px;
}

.feature span{

    font-size:13px;

    font-weight:600;

    line-height:1.4;
}
/* IMAGEN */

.hero-image {
    width: 45%;
    text-align: right;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 0, 0, .35),
            transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.hero-image img {
    max-width: 100%;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 25px rgba(255, 0, 0, .4));
}

/* RESPONSIVE */

@media(max-width:1050px) {

   .hero-content{
    min-height: auto;

    padding: 20px 25px 40px;

    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
}

    .hero-text{
        width: 100%;
        text-align: center;
    }

    .section-badge{
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        padding: 8px 16px;
        border-radius: 30px;
        background: rgba(255,0,0,.12);
        border: 1px solid rgba(255,0,0,.3);
        color: #ff3b3b;
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .hero-text h1{
        font-size: 42px;
        line-height: .95;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-text h1 span{
        margin-top: 4px;
    }

    .hero-text p{
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255,255,255,.85);
        margin-bottom: 30px;
    }

    .buttons{
    display:flex;
    flex-direction:row;
    gap:10px;
    width:100%;
    margin-top:30px;
}
    .btn{
    flex:1;
    padding:14px 10px;
    text-align:center;
    font-size:13px;
}

    .btn-primary{
        box-shadow:
            0 0 25px rgba(255,0,0,.35);
    }

   .features{

    grid-template-columns:repeat(4,1fr);

    gap:8px;

    margin-top:30px;
}

.feature{

    min-height:90px;

    padding:12px 5px;

    border-radius:12px;
}

.feature i{

    font-size:18px;

    margin-bottom:8px;
}

.feature span{

    font-size:10px;

    line-height:1.2;
}
.btn-primary{
    background: linear-gradient(
        135deg,
        #ff2b2b,
        #c70000
    );
}

.btn-secondary{
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}
}

@media (max-width:768px){

    .hero{

        background:
            linear-gradient(
                rgba(0,0,0,.65),
                rgba(0,0,0,.65)
            ),
            url('../img/banner_1.png');

        background-size:cover;

        background-position:75% center;

        background-repeat:no-repeat;
    }

}

@media (max-width: 768px) {

    .menu {
        display: none;
    }

    .hero-text p {
        display: none;
    }
}

/* ===========================
   MOBILE HERO
=========================== */

@media (max-width: 768px){

    .hero-content{
    min-height: auto;

    padding: 20px 25px 40px;

    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
}

    .hero-text{
        width: 100%;
        text-align: center;
    }

    .section-badge{
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        padding: 8px 16px;
        border-radius: 30px;
        background: rgba(255,0,0,.12);
        border: 1px solid rgba(255,0,0,.3);
        color: #ff3b3b;
        margin-bottom: 20px;
        margin-top: -20px;
    }

    .hero-text h1{
        font-size: 42px;
        line-height: .95;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-text h1 span{
        margin-top: 4px;
    }

    .hero-text p{
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255,255,255,.85);
        margin-bottom: 30px;
    }

    .buttons{
    display:flex;
    flex-direction:row;
    gap:10px;
    width:100%;
    margin-top:30px;
}
    .btn{
    flex:1;
    padding:14px 10px;
    text-align:center;
    font-size:13px;
}

    .btn-primary{
        box-shadow:
            0 0 25px rgba(255,0,0,.35);
    }

   .features{

    grid-template-columns:repeat(4,1fr);

    gap:8px;

    margin-top:30px;
}

.feature{

    min-height:90px;

    padding:12px 5px;

    border-radius:12px;
}

.feature i{

    font-size:18px;

    margin-bottom:8px;
}

.feature span{

    font-size:10px;

    line-height:1.2;
}
.btn-primary{
    background: linear-gradient(
        135deg,
        #ff2b2b,
        #c70000
    );
}

.btn-secondary{
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}
}

@media (max-width:768px){

    .hero{

        background:
            linear-gradient(
                rgba(0,0,0,.65),
                rgba(0,0,0,.65)
            ),
            url('../img/banner_1.png');

        background-size:cover;

        background-position:75% center;

        background-repeat:no-repeat;
    }

}