/* =====================================================
   ECO ENERGY
   STYLE.CSS - PARTE 1
===================================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#061B14;
    color:#ffffff;
    overflow-x:hidden;

    background-image:
    radial-gradient(circle at 20% 20%,rgba(0,200,83,.18),transparent 30%),
    radial-gradient(circle at 80% 30%,rgba(0,176,255,.15),transparent 35%),
    radial-gradient(circle at 50% 90%,rgba(105,240,174,.12),transparent 30%);

}

/* CORES */

:root{

    --verde:#00C853;
    --verdeClaro:#69F0AE;
    --verdeEscuro:#0B3D2E;
    --azul:#00B0FF;
    --azulEscuro:#003B5C;
    --branco:#FFFFFF;
    --cinza:#BFC7C2;
    --glass:rgba(255,255,255,.08);

}

/* =====================================================
   PARTÍCULAS
===================================================== */

#particles{

    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;

    background-image:
    radial-gradient(var(--verdeClaro) 1px, transparent 1px),
    radial-gradient(var(--azul) 1px, transparent 1px);

    background-size:120px 120px,180px 180px;
    background-position:0 0,60px 60px;

    animation:particlesMove 30s linear infinite;

    opacity:.25;

}

@keyframes particlesMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-250px);

    }

}

/* =====================================================
   HEADER
===================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    backdrop-filter:blur(14px);

    background:rgba(5,20,16,.55);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

}

.logo img{

    width:220px;
    max-width:100%;
    transition:.4s;

}

.logo img:hover{

    transform:scale(1.05);

}

/* MENU */

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.35s;

    position:relative;

}

nav a:hover{

    color:var(--verdeClaro);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--verde);

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

/* =====================================================
   HERO
===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    padding:150px 8% 80px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    color:white;

}

.hero-text p{

    font-size:20px;

    line-height:1.8;

    color:var(--cinza);

    max-width:700px;

    margin-bottom:35px;

}

/* BOTÃO */

.btn{

    display:inline-block;

    padding:16px 42px;

    border-radius:50px;

    background:linear-gradient(45deg,var(--verde),var(--azul));

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

    box-shadow:0 0 25px rgba(0,200,83,.35);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 40px rgba(0,200,83,.6);

}

/* =====================================================
   ANIMAÇÃO IA
===================================================== */

.hero-animation{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    height:500px;

}

/* ESFERA */

.earth{

    width:260px;

    height:260px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--verde),
        var(--azul)
    );

    box-shadow:
        0 0 60px rgba(0,200,83,.45),
        inset 0 0 30px rgba(255,255,255,.15);

    animation:floatPlanet 5s ease-in-out infinite;

}

/* ANÉIS */

.ring{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(105,240,174,.35);

}

.ring1{

    width:320px;
    height:320px;

    animation:rotate1 18s linear infinite;

}

.ring2{

    width:390px;
    height:390px;

    animation:rotate2 14s linear infinite reverse;

}

.ring3{

    width:460px;
    height:460px;

    animation:rotate1 22s linear infinite;

}

/* ANIMAÇÕES */

@keyframes floatPlanet{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@keyframes rotate1{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes rotate2{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}
/* =====================================================
   ECO ENERGY
   STYLE.CSS - PARTE 2
===================================================== */


/* =====================================================
   TÍTULOS DAS SEÇÕES
===================================================== */

.energia,
.ia-section,
.numeros,
.banner{

    padding:100px 8%;

}

.titulo{

    text-align:center;

    margin-bottom:70px;

}

.titulo h2{

    font-size:42px;

    color:var(--branco);

    margin-bottom:20px;

}

.titulo p{

    max-width:900px;

    margin:auto;

    color:var(--cinza);

    line-height:1.8;

    font-size:18px;

}


/* =====================================================
   CARDS
===================================================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.card{

    background:var(--glass);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px;

    text-align:center;

    transition:.45s;

    overflow:hidden;

    position:relative;

}

.card::before{

    content:"";

    position:absolute;

    top:-120px;
    left:-120px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(0,200,83,.12);

    transition:.6s;

}

.card:hover::before{

    transform:scale(2);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 0 40px rgba(0,200,83,.20);

}

.icone{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    background:linear-gradient(
        45deg,
        var(--verde),
        var(--azul)
    );

    font-size:34px;

    color:white;

    box-shadow:0 0 25px rgba(0,200,83,.30);

}

.card h3{

    font-size:26px;

    margin-bottom:18px;

}

.card p{

    color:var(--cinza);

    line-height:1.8;

}


/* =====================================================
   IA + ENERGIA
===================================================== */

.ia-section{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.ia-left h2{

    font-size:42px;

    margin-bottom:25px;

}

.ia-left p{

    color:var(--cinza);

    line-height:1.9;

    margin-bottom:30px;

}

.ia-left ul{

    list-style:none;

}

.ia-left li{

    margin:18px 0;

    font-size:18px;

}

.ia-left i{

    color:var(--verdeClaro);

    margin-right:12px;

}


/* =====================================================
   CÍRCULO IA
===================================================== */

.ia-right{

    display:flex;

    justify-content:center;

}

.ai-circle{

    position:relative;

    width:240px;

    height:240px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--verde),
        var(--azul)
    );

    box-shadow:

        0 0 45px rgba(0,200,83,.45);

}

.ai-circle i{

    font-size:90px;

    color:white;

}

.pulse{

    position:absolute;

    border-radius:50%;

    border:2px solid rgba(105,240,174,.40);

}

.pulse1{

    width:290px;
    height:290px;

    animation:pulse 3s infinite;

}

.pulse2{

    width:360px;
    height:360px;

    animation:pulse 3s infinite .6s;

}

.pulse3{

    width:430px;
    height:430px;

    animation:pulse 3s infinite 1.2s;

}

@keyframes pulse{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    100%{

        transform:scale(1.25);

        opacity:0;

    }

}


/* =====================================================
   CONTADORES
===================================================== */

.numeros{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.contador{

    text-align:center;

    background:var(--glass);

    padding:40px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.contador:hover{

    transform:translateY(-8px);

    box-shadow:0 0 35px rgba(0,176,255,.25);

}

.contador h2{

    font-size:52px;

    color:var(--verdeClaro);

    margin-bottom:12px;

}

.contador span{

    color:var(--cinza);

    font-size:18px;

}


/* =====================================================
   BANNER
===================================================== */

.banner{

    text-align:center;

}

.banner-box{

    max-width:1100px;

    margin:auto;

    padding:70px;

    border-radius:35px;

    background:

    linear-gradient(
        135deg,
        rgba(0,200,83,.16),
        rgba(0,176,255,.16)
    );

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

}

.banner-box h2{

    font-size:46px;

    margin-bottom:20px;

}

.banner-box p{

    color:var(--cinza);

    line-height:1.9;

    font-size:18px;

    max-width:850px;

    margin:0 auto 45px;

}

.banner-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:45px;

}

.banner-grid div{

    padding:25px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    transition:.35s;

    font-size:18px;

}

.banner-grid div:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.10);

}

.banner-grid i{

    display:block;

    font-size:34px;

    margin-bottom:15px;

    color:var(--verdeClaro);

}
/* =====================================================
   ECO ENERGY
   STYLE.CSS - PARTE 3
===================================================== */


/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#04140F;

    padding:70px 8% 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:45px;

    margin-bottom:45px;

}

.footer-grid h3{

    color:var(--verdeClaro);

    margin-bottom:20px;

    font-size:24px;

}

.footer-grid p{

    color:var(--cinza);

    line-height:1.9;

    margin-bottom:12px;

}

.footer-grid i{

    color:var(--verde);

    margin-right:10px;

}

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    color:white;

    text-decoration:none;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.social a:hover{

    background:linear-gradient(
        45deg,
        var(--verde),
        var(--azul)
    );

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 0 25px rgba(0,200,83,.35);

}

.copyright{

    text-align:center;

    color:#9AA7A0;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    font-size:15px;

}


/* =====================================================
   BOTÃO WHATSAPP
===================================================== */

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:white;

    text-decoration:none;

    font-size:34px;

    z-index:9999;

    box-shadow:0 0 25px rgba(37,211,102,.45);

    animation:whatsFloat 2.8s infinite;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.12);

}

@keyframes whatsFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all 1s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#081C15;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--verde),
        var(--azul)
    );

    border-radius:20px;

}


/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media(max-width:1200px){

    .hero{

        flex-direction:column;

        text-align:center;

    }

    .hero-text h1{

        font-size:48px;

    }

    .hero-animation{

        margin-top:50px;

    }

    .ia-section{

        grid-template-columns:1fr;

        text-align:center;

    }

    .ia-left ul{

        display:inline-block;

        text-align:left;

    }

    .numeros{

        grid-template-columns:repeat(2,1fr);

    }

    .banner-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    header{

        flex-direction:column;

        gap:20px;

        padding:20px;

    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero{

        padding-top:190px;

    }

    .hero-text h1{

        font-size:38px;

    }

    .hero-text p{

        font-size:17px;

    }

    .earth{

        width:180px;

        height:180px;

    }

    .ring1{

        width:240px;

        height:240px;

    }

    .ring2{

        width:300px;

        height:300px;

    }

    .ring3{

        width:360px;

        height:360px;

    }

    .titulo h2{

        font-size:34px;

    }

    .ia-left h2{

        font-size:34px;

    }

    .banner-box{

        padding:40px 25px;

    }

    .banner-box h2{

        font-size:34px;

    }

    .banner-grid{

        grid-template-columns:1fr;

    }

    .numeros{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .social{

        justify-content:center;

    }

}

@media(max-width:480px){

    .logo img{

        width:170px;

    }

    .hero-text h1{

        font-size:30px;

    }

    .hero-text p{

        font-size:16px;

    }

    .btn{

        width:100%;

        text-align:center;

    }

    .card{

        padding:30px;

    }

    .contador h2{

        font-size:42px;

    }

    .whatsapp{

        width:58px;

        height:58px;

        font-size:28px;

        right:20px;

        bottom:20px;

    }

}

/* =====================================================
   ANIMAÇÃO SUAVE DO FUNDO
===================================================== */

body::before{

    content:"";

    position:fixed;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;

    background:

    radial-gradient(circle,
    rgba(0,200,83,.05),
    transparent 55%);

    animation:bgRotate 40s linear infinite;

    z-index:-2;

}

@keyframes bgRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}