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

/* =========================================
HERO
========================================= */

.hero-section{

    position: relative;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    min-height: 100vh;

    overflow: hidden;

}

.hero-overlay{

    position: absolute;

    width: 100%;

    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 20%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.75) 100%
    );

    top: 0;
    left: 0;

}

.hero-content{

    position: relative;

    z-index: 10;

}

.hero-title{

    font-size: 5rem;

    font-weight: 800;

    line-height: 1;

}

.hero-title span{

    color: #ffb400;

    display: block;

}

.hero-title small{

    display: block;

    font-size: 2rem;

    margin-top: 20px;

}

.hero-description{

    font-size: 1.2rem;

    max-width: 500px;

    margin-top: 30px;

    color: #f5f5f5;

}

.lead-form-box{

    background: rgba(15,15,15,0.95);

    backdrop-filter: blur(10px);

    padding: 40px;

    border-radius: 25px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);

}

.custom-input{

    height: 60px;

    border-radius: 15px;

    border: none;

    padding-left: 20px;

    font-size: 1rem;

}

.custom-input::placeholder {

    color: #ffffff;

    opacity: .8;

}

.btn-cupom{

    height: 60px;

    border-radius: 15px;

    border: none;

    background: #ffb400;

    color: #e0dddd;

    font-weight: 700;

    transition: .3s;

}

.btn-cupom:hover{

    transform: scale(1.02);

}

/* MOBILE */

@media(max-width:768px){

    .hero-title{

        font-size: 3rem;

    }

    .lead-form-box{

        margin-top: 40px;

    }

}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.hero-title span {
    color: #ffb400;
}

.hero-title small {
    display: block;
    font-size: 2rem;
    color: #ffffff;
    margin-top: 10px;
}

.hero-description {
    color: #cccccc;
    font-size: 1.1rem;
    margin-top: 25px;
}

.discount-box {
    background: #111111;
    border: 2px solid #ffb400;
    border-radius: 20px;
    padding: 25px;
    max-width: 350px;
}

.discount-box h2 {
    color: #ffb400;
    font-size: 2rem;
    font-weight: 800;
}

.discount-box p {
    margin: 0;
}

.features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.feature-item i {
    color: #ffb400;
}

.hero-food {
    max-width: 100%;
    border-radius: 30px;
}

.lead-form-box {
    background: #111111;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.08);
}

.custom-input {
    height: 55px;
    border-radius: 15px;
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    color: #ffffff;
}

.custom-input:focus {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #ffb400;
    box-shadow: none;
}

.btn-cupom {
    height: 60px;
    border-radius: 18px;
    background: #ffb400;
    border: none;
    color: #000;
    font-weight: 700;
}

.social-proof-section {
    padding: 50px 0;
}

.social-proof-box {
    background: #111111;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.combos-section {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
}

.combo-card {
    background: #111111;
    border-radius: 25px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

.combo-card:hover {
    transform: translateY(-8px);
}

.combo-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.combo-content {
    padding: 25px;
}

.combo-content h3 {
    font-weight: 700;
}

.combo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-combo {
    background: #ffb400;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
}

.tag {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section {
    padding: 60px 0;
    background: #090909;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 15px;
    padding: 15px 30px;
    font-weight: 700;
}

@media(max-width: 991px) {

    .hero-title {
        font-size: 2.8rem;
    }

    .social-proof-box {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 576px) {

    .hero-title {
        font-size: 2.2rem;
    }

    .lead-form-box {
        padding: 25px;
    }

    .combo-image {
        height: 220px;
    }

}