/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0b0b0b;
    color:#fff;
}

/* ==========================
   HERO
========================== */

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;

    animation:heroSlider 12s infinite;
}

.slide1{
    background-image:url("img/hero1.jpg");
    animation-delay:0s;
}

.slide2{
    background-image:url("img/hero-2pc.png");
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center center;
    background-color:#000;
    animation-delay:6s;

    filter:brightness(1.4);
}

.overlay{
    position:absolute;
    inset:0;
    background:transparent;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;

    animation:textSlider 12s infinite;
}

.logo{
    width:120px;
    margin-bottom:20px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1 span{
    display:block;
    color:#ffd700;

    text-shadow:
    0 0 10px #ffd700,
    0 0 20px #ffd700,
    0 0 40px #ffd700;
}

.hero p{
    font-size:1.2rem;
    color:#ddd;
    max-width:700px;
    margin:auto;
}

@keyframes heroSlider{

    0%{
        opacity:0;
    }

    8%{
        opacity:1;
    }

    42%{
        opacity:1;
    }

    50%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

@keyframes textSlider{

    0%{
        opacity:1;
    }

    42%{
        opacity:1;
    }

    50%{
        opacity:0;
    }

    92%{
        opacity:0;
    }

    100%{
        opacity:1;
    }

}

/* ==========================
   CARDS
========================== */

.cards{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:#141414;
    border:1px solid #242424;

    border-radius:20px;
    overflow:hidden;

    text-decoration:none;
    color:#fff;

    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card h3{
    padding:20px;
    font-size:1.4rem;
}

.card span{
    display:block;
    margin:0 20px 20px;
    padding:12px;

    background:#ffd700;
    color:#000;

    text-align:center;
    border-radius:10px;
    font-weight:700;
}

/* ==========================
   INFO
========================== */

.info{
    padding:40px 20px 80px;
    text-align:center;
}

.info h2{
    margin-bottom:40px;
    font-size:2rem;
    color:#ffd700;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:auto;
}

.benefits div{
    background:#141414;
    padding:20px;
    border-radius:12px;
}

.benefits i{
    color:#ffd700;
    margin-right:8px;
}

/* ==========================
   FOOTER
========================== */

footer{
    text-align:center;
    padding:40px 20px;
    border-top:1px solid #222;
    background:#090909;
}

footer h3{
    color:#ffd700;
    margin-bottom:10px;
}

footer p{
    color:#aaa;
    margin:5px 0;
}

/* ==========================
   WHATSAPP
========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25d366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:2rem;

    box-shadow:0 0 20px rgba(37,211,102,.6);

    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:900px){

    .hero h1{
        font-size:3rem;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .benefits{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .slide2{
        background-image:url("img/hero2-mobile.jpg");
    }

}

.section-title{
    text-align:center;
    padding:60px 20px 20px;
}

.section-title h2{
    font-size:2.3rem;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.section-title p{
    color:#cfcfcf;
    font-size:1.1rem;
}

.section-title span{
    color:#25D366;
    font-weight:700;

    text-shadow:
    0 0 8px rgba(37,211,102,.7),
    0 0 16px rgba(37,211,102,.4);
}