*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

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

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

a{
    text-decoration:none;
}

section{
    padding:100px 0;
}

.green{
    color:#76ff03;
    text-shadow:0 0 18px rgba(118,255,3,.5);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)),
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(rgba(118,255,3,.07) 1px, transparent 1px);
    background-size:4px 4px;
    opacity:.25;
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:72px;
    line-height:1;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:18px;
    margin-bottom:35px;
}

.benefits{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:40px;
}

.benefits div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.benefits i{
    color:#76ff03;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(90deg,#76ff03,#43bf00);
    color:#000;
    padding:18px 36px;
    border-radius:10px;
    font-weight:600;
    text-transform:uppercase;
    box-shadow:0 0 28px rgba(118,255,3,.35);
    transition:.3s ease;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding:18px 36px;
    border-radius:10px;
    transition:.3s ease;
}

.btn-secondary:hover{
    border-color:#76ff03;
    color:#76ff03;
}

.hero-image img{
    width:100%;
    filter:drop-shadow(0 0 45px rgba(118,255,3,.25));
}

/* TITLES */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#bcbcbc;
    line-height:1.8;
}

/* PRODUCTS */

.products{
    background:#0d0d0d;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:linear-gradient(180deg,#151515,#0d0d0d);
    border-radius:20px;
    padding:40px 30px;
    border:1px solid rgba(255,255,255,.08);
    position:relative;
    overflow:hidden;
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:rgba(118,255,3,.4);
    box-shadow:0 0 35px rgba(118,255,3,.15);
}

.badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#76ff03;
    color:#000;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.cp-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(118,255,3,.08);
    border:1px solid rgba(118,255,3,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.cp-icon i{
    font-size:34px;
    color:#76ff03;
}

.product-card h3{
    font-size:38px;
    margin-bottom:15px;
}

.price{
    font-size:44px;
    color:#76ff03;
    font-weight:800;
    margin-bottom:30px;
}

.features{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:35px;
}

.features div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d5d5d5;
}

.features i{
    color:#76ff03;
}

.buy-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:#76ff03;
    color:#000;
    padding:16px;
    border-radius:10px;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s ease;
}

.buy-btn:hover{
    transform:scale(1.03);
}

/* ADVANTAGES */

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.adv-card{
    background:#111;
    border-radius:20px;
    padding:40px 30px;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s ease;
}

.adv-card:hover{
    transform:translateY(-6px);
    border-color:rgba(118,255,3,.35);
}

.adv-card i{
    color:#76ff03;
    font-size:42px;
    margin-bottom:25px;
}

.adv-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.adv-card p{
    color:#c7c7c7;
    line-height:1.8;
}

/* STATS */

.stats{
    background:
    linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.84)),
    url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=2071&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-card{
    text-align:center;
    padding:40px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
}

.stat-card h3{
    font-size:52px;
    color:#76ff03;
    margin-bottom:15px;
}

.stat-card p{
    text-transform:uppercase;
    color:#d7d7d7;
    font-weight:700;
}

/* CTA */

.cta{
    text-align:center;
    background:linear-gradient(180deg,#0a0a0a,#101010);
}

.cta h2{
    font-size:54px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.cta p{
    max-width:800px;
    margin:auto auto 40px;
    color:#c7c7c7;
    line-height:1.8;
}

/* FOOTER */

footer{
    padding:40px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    background:#070707;
    color:#a8a8a8;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .benefits{
        align-items:center;
    }

    .hero-text h1{
        font-size:52px;
    }

    .section-title h2,
    .cta h2{
        font-size:38px;
    }
}

@media(max-width:600px){

    .hero-text h1{
        font-size:40px;
    }

    .price{
        font-size:36px;
    }
}

.cp-icon {
    width: 80px;
    height: 80px;
    
    border-radius: 50%;
    background: rgba(118,255,3,.08);
    border: 2px solid rgba(118,255,3,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    overflow: hidden; /* IMPORTANTE */
}

.cp-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}