*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0b0b0b;
    color:white;
}

/* NAVBAR */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    height:70px;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100%;
    max-height:85px;
    width:auto;
}

/* MENU */
nav a{
    margin:0 15px;
    text-decoration:none;
    color:#ccc;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a:hover{
    color:white;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:red;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/* BOTÃO */
.whats-btn{
    background:red;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

.whats-btn:hover{
    background:#c40000;
    transform:translateY(-2px);
}

/* HERO */
.hero{
    height:90vh;
    display:flex;
    align-items:center;
    padding:80px;

    background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.25)),
    url('../img/hero3.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-text{
    max-width:550px;
}

.hero h1{
    font-size:62px;
    line-height:1.1;
    font-weight:700;
}

.hero span{
    color:red;
}

.hero p{
    margin:25px 0;
    color:#b3b3b3;
    line-height:1.7;
    font-size:15px;
}

/* BOTÕES */
.btn{
    padding:15px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    margin-right:12px;
    display:inline-block;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-red{
    background:red;
    color:white;
}

.btn-dark{
    border:1px solid #444;
    color:white;
}

/* BENEFITS */
.benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#101010;
    border-top:1px solid rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.04);
}

.benefit-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:35px 30px;
    border-right:1px solid rgba(255,255,255,0.05);
    transition:.3s;
}

.benefit-box:hover{
    background:#151515;
}

.benefit-box:last-child{
    border-right:none;
}

.icon{
    width:70px;
    height:70px;
    border-radius:50%;
    border:2px solid rgba(255,0,0,0.7);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:red;

    box-shadow:0 0 20px rgba(255,0,0,0.15);
    flex-shrink:0;
}

.benefit-box h3{
    color:white;
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
    letter-spacing:1px;
}

.benefit-box p{
    color:#888;
    font-size:13px;
    line-height:1.6;
}

/* SECTION */
.section{
    padding:90px 60px;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:32px;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#111;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
    border:1px solid rgba(255,255,255,0.04);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(255,0,0,0.08);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    margin-bottom:10px;
}

.price{
    color:red;
    font-weight:bold;
    margin-top:15px;
    font-size:20px;
}

.card a{
    display:block;
    background:red;
    padding:14px;
    text-align:center;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.card a:hover{
    background:#c40000;
}

/* FOOTER */
.footer{
    background:#000;
    padding:40px;
    text-align:center;
    color:#777;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVO BENEFITS */
@media(max-width:900px){

    .benefits{
        grid-template-columns:1fr 1fr;
    }
}

/* RESPONSIVO */
@media(max-width:768px){

    header{
        flex-direction:column;
        height:auto;
        padding:20px;
        gap:15px;
    }

    nav{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        height:auto;
        padding:70px 20px;
        text-align:center;
        justify-content:center;
    }

    .hero-text{
        max-width:100%;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:14px;
    }

    .btn{
        display:block;
        margin:10px auto;
        width:85%;
        text-align:center;
    }

    .section{
        padding:60px 20px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .benefits{
        grid-template-columns:1fr;
    }

    .benefit-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.05);
    }

    .benefit-box:last-child{
        border-bottom:none;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .logo img{
        max-height:65px;
    }

    .whats-btn{
        width:100%;
        text-align:center;
    }
}

