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

:root{

    --azul-1:#001a44;
    --azul-2:#002b70;
    --azul-3:#0d47a1;

    --amarelo:#f4c400;

    --texto:#1f2937;

    --cinza:#6b7280;

    --branco:#ffffff;
}


/* ===================================================== */
/* BODY                                                   */
/* ===================================================== */

body{

    font-family:
    Segoe UI,
    Inter,
    Arial,
    sans-serif;

    background:
    radial-gradient(
        circle at top,
        #123d8f 0%,
        #001a44 40%,
        #000814 100%
    );

    color:#ffffff;

    overflow-x:hidden;
}


/* ===================================================== */
/* TOPBAR                                                  */
/* ===================================================== */

.topbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

    z-index:999;

    backdrop-filter:blur(14px);

    background:
    rgba(5,12,28,.65);

    border-bottom:
    1px solid rgba(255,255,255,.06);
}


/* ===================================================== */
/* CONTAINER                                               */
/* ===================================================== */

.topbar-container{

    width:100%;

    max-width:1600px;

    height:100%;

    margin:auto;

    padding:0 50px;

    display:flex;

    align-items:center;
}


/* ===================================================== */
/* LOGO                                                    */
/* ===================================================== */

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;
}

.logo img{

    height:90px;

    width:auto;

    display:block;
}


/* ===================================================== */
/* MENU                                                    */
/* ===================================================== */

.menu{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:42px;
}

.menu a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    opacity:.72;

    transition:.25s;
}

.menu a:hover{

    opacity:1;

    color:var(--amarelo);
}

/* ===================================================== */
/* IDIOMAS                                                */
/* ===================================================== */

.idiomas{

    display:flex;
    gap:14px;
}

.idiomas a{

    color:#ffffff;

    text-decoration:none;

    font-size:14px;

    opacity:.8;

    transition:.2s;
}

.idiomas a:hover{

    opacity:1;

    color:var(--amarelo);
}


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

.hero{

    min-height:100vh;

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

    padding:120px 40px 80px;
	position:relative;
overflow:hidden;
}
.hero::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    background:
    radial-gradient(
        circle,
        rgba(244,196,0,.12),
        transparent 70%
    );

    top:-300px;
    right:-200px;
}

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

.hero-content{

    max-width:1100px;

    text-align:center;
}


/* ===================================================== */
/* TITULO                                                 */
/* ===================================================== */

.hero h1{

    font-size:78px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:28px;

    text-shadow:
    0 10px 30px rgba(0,0,0,.35);
}


/* ===================================================== */
/* SUBTITULO                                              */
/* ===================================================== */

.hero p{

    max-width:900px;

    margin:auto;

    font-size:24px;

    line-height:1.7;

    color:rgba(255,255,255,.86);

    margin-bottom:48px;
}


/* ===================================================== */
/* BOTÕES                                                 */
/* ===================================================== */

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:22px;

    flex-wrap:wrap;
}


/* ===================================================== */
/* BOTÕES BASE                                            */
/* ===================================================== */

.btn-primary,
.btn-secondary{

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    font-size:15px;

    transition:.25s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}


/* ===================================================== */
/* BOTÃO PRIMÁRIO                                         */
/* ===================================================== */

.btn-primary{

    background:var(--amarelo);

    color:var(--azul-1);
}

.btn-primary:hover{

    transform:
    translateY(-4px)
    scale(1.02);
}


/* ===================================================== */
/* BOTÃO SECUNDÁRIO                                       */
/* ===================================================== */

.btn-secondary{

    background:rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.18);

    color:#ffffff;

    backdrop-filter:blur(6px);
}

.btn-secondary:hover{

    transform:
    translateY(-4px)
    scale(1.02);

    background:rgba(255,255,255,.14);
}


/* ===================================================== */
/* RESPONSIVO                                             */
/* ===================================================== */

@media(max-width:900px){

    .topbar{

        padding:0 20px;
    }

    .menu{

        display:none;
    }

    .hero h1{

        font-size:48px;
    }

    .hero p{

        font-size:20px;
    }
}
/* ===================================================== */
/* LOGO IMAGE                                             */
/* ===================================================== */

.logo img{

    height:64px;

    display:block;

    object-fit:contain;
}
/* ===================================================== */
/* CONTAINER                                               */
/* ===================================================== */

.container{

    width:100%;
    max-width:1200px;

    margin:auto;
}


/* ===================================================== */
/* SEÇÕES                                                  */
/* ===================================================== */

.sobre,
.ecossistema,
.screenshots,
.professor,
.beta{

    padding:120px 40px;
}


/* ===================================================== */
/* TITULOS                                                 */
/* ===================================================== */

.sobre h2,
.ecossistema h2,
.screenshots h2,
.professor h2,
.beta h2{

    font-size:48px;

    margin-bottom:30px;

    text-align:center;
}


/* ===================================================== */
/* TEXTOS                                                  */
/* ===================================================== */

.sobre p,
.ecossistema p,
.beta p{

    font-size:20px;

    line-height:1.8;

    text-align:center;

    color:rgba(255,255,255,.82);

    max-width:900px;

    margin:auto;
}


/* ===================================================== */
/* CARDS                                                   */
/* ===================================================== */

.cards{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card{

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

    backdrop-filter:blur(8px);

    transition:.25s;
}

.card:hover{

    transform:
    translateY(-6px);
}

.card h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--amarelo);
}

.card p{

    text-align:left;

    font-size:16px;
}


/* ===================================================== */
/* SCREENSHOTS                                             */
/* ===================================================== */

.shots{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;
}

.shots img{

    width:100%;

    border-radius:18px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);

    transition:.25s;
}

.shots img:hover{

    transform:
    scale(1.02);
}




/* ===================================================== */
/* FORM                                                    */
/* ===================================================== */

.beta-form{

    margin-top:50px;

    display:flex;
    flex-direction:column;

    gap:20px;

    max-width:700px;

    margin-inline:auto;
}

.beta-form input{

    height:58px;

    border:none;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;
}

.beta-form button{

    height:58px;

    border:none;

    border-radius:12px;

    background:var(--amarelo);

    color:var(--azul-1);

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;
}

.beta-form button:hover{

    transform:
    translateY(-3px);
}


/* ===================================================== */
/* FOOTER                                                  */
/* ===================================================== */

.footer{

    padding:40px;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,.08);

    color:rgba(255,255,255,.7);
}


/* ===================================================== */
/* RESPONSIVO                                              */
/* ===================================================== */

@media(max-width:900px){

    .professor-grid{

        grid-template-columns:1fr;
    }

    .professor-info h2,
    .professor-info p{

        text-align:center;
    }

    .sobre h2,
    .ecossistema h2,
    .screenshots h2,
    .professor h2,
    .beta h2{

        font-size:36px;
    }
}
/* ===================================================== */
/* FUNDADOR                                                */
/* ===================================================== */

.fundador{

    padding:140px 40px;

    position:relative;
}

.fundador-grid{

    display:grid;

    grid-template-columns:
    320px 1fr;

    gap:80px;

    align-items:center;
}

.fundador-foto{

    position:relative;
}

.fundador-foto::before{

    content:"";

    position:absolute;

    inset:-20px;

    background:
    radial-gradient(
        circle,
        rgba(244,196,0,.18),
        transparent 70%
    );

    z-index:-1;
}

.fundador-foto img{

    width:100%;

    border-radius:24px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);
}

.fundador-info{

    max-width:700px;
}

.tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(244,196,0,.12);

    border:
    1px solid rgba(244,196,0,.25);

    color:var(--amarelo);

    font-size:14px;

    font-weight:600;

    margin-bottom:24px;
}

.fundador-info h2{

    font-size:64px;

    margin-bottom:24px;

    line-height:1;
}

.fundador-info p{

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.82);
}


/* ===================================================== */
/* RESPONSIVO                                              */
/* ===================================================== */

@media(max-width:900px){

    .fundador-grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .fundador-info{

        margin:auto;
    }

    .fundador-info h2{

        font-size:42px;
    }

    .fundador-info p{

        font-size:18px;
    }
}
/* ===================================================== */
/* ROADMAP                                                 */
/* ===================================================== */

.roadmap{

    padding:120px 40px;
}

.roadmap-hero{

    min-height:60vh;
}

.roadmap-item{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:50px;

    margin-bottom:40px;

    backdrop-filter:blur(8px);

    transition:.25s;
}

.roadmap-item:hover{

    transform:
    translateY(-6px);
}

.roadmap-status{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(0,255,150,.15);

    border:
    1px solid rgba(0,255,150,.25);

    color:#00ff95;

    font-size:13px;

    font-weight:700;

    margin-bottom:22px;
}

.roadmap-status.futuro{

    background:
    rgba(244,196,0,.12);

    border:
    1px solid rgba(244,196,0,.2);

    color:var(--amarelo);
}

.roadmap-item h2{

    font-size:42px;

    margin-bottom:24px;
}

.roadmap-item p{

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.82);

    max-width:900px;
}
/* ===================================================== */
/* TOPBAR                                                  */
/* ===================================================== */

.topbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(14px);

    background:
    rgba(5,12,28,.55);

    border-bottom:
    1px solid rgba(255,255,255,.06);
}

.topbar-container{

    max-width:1400px;

    height:84px;

    margin:auto;

    padding:0 40px;

    display:flex;

    align-items:center;

    justify-content:flex-start;
}

.logo img{

    height:44px;
}

.menu{

    display:flex;

    gap:36px;
	margin-left:auto;
}

.menu a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    opacity:.75;

    transition:.25s;
}

.menu a:hover{

    opacity:1;

    color:var(--amarelo);
}
/* ===================================================== */
/* PÁGINAS INTERNAS                                        */
/* ===================================================== */

.pagina{

    min-height:100vh;

    padding:
    180px 40px 120px;
}

.pagina h1{

    font-size:72px;

    margin-bottom:30px;
}

.pagina p{

    font-size:22px;

    line-height:1.8;

    color:
    rgba(255,255,255,.82);
}
/* ===================================================== */
/* HERO                                                    */
/* ===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:
    160px 60px 100px;

    position:relative;

    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    width:1200px;
    height:1200px;

    background:
    radial-gradient(
        circle,
        rgba(244,196,0,.12),
        transparent 70%
    );

    top:-400px;
    right:-300px;
}

.hero-grid{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}


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

.hero-content{

    position:relative;

    z-index:2;
}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(244,196,0,.12);

    border:
    1px solid rgba(244,196,0,.25);

    color:var(--amarelo);

    font-size:14px;

    font-weight:700;

    margin-bottom:30px;
}

.hero-content h1{

    font-size:96px;

    line-height:.95;

    margin-bottom:30px;
}

.hero-content p{

    font-size:24px;

    line-height:1.8;

    color:
    rgba(255,255,255,.82);

    max-width:650px;
}


/* ===================================================== */
/* BUTTONS                                                 */
/* ===================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:50px;
}

.btn-primary,
.btn-secondary{

    height:58px;

    padding:0 28px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-weight:700;

    transition:.25s;
}

.btn-primary{

    background:var(--amarelo);

    color:var(--azul-1);
}

.btn-primary:hover{

    transform:
    translateY(-4px);
}

.btn-secondary{

    border:
    1px solid rgba(255,255,255,.12);

    color:white;

    background:
    rgba(255,255,255,.04);
}

.btn-secondary:hover{

    background:
    rgba(255,255,255,.08);
}


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

.hero-image{

    position:relative;

    z-index:2;
}

.hero-image img{

    width:100%;

    border-radius:26px;

    box-shadow:
    0 40px 100px rgba(0,0,0,.45);

    transform:
    perspective(1200px)
    rotateY(-10deg)
    rotateX(2deg);

    transition:.35s;
}

.hero-image img:hover{

    transform:
    perspective(1200px)
    rotateY(-4deg)
    rotateX(1deg)
    translateY(-6px);
}


/* ===================================================== */
/* RESPONSIVO                                              */
/* ===================================================== */

@media(max-width:1100px){

    .hero-grid{

        grid-template-columns:1fr;
    }

    .hero-content{

        text-align:center;
    }

    .hero-content p{

        margin:auto;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-content h1{

        font-size:72px;
    }
}

@media(max-width:700px){

    .hero-content h1{

        font-size:54px;
    }

    .hero-content p{

        font-size:20px;
    }

    .hero-buttons{

        flex-direction:column;
    }
}
/* ===================================================== */
/* LOGO FIX                                                */
/* ===================================================== */

.logo-img{

    height:90px !important;

    width:auto !important;

    max-height:none !important;

    display:block;
}
/* ===================================================== */
/* ECOSSISTEMA                                             */
/* ===================================================== */

.eco-hero{

    min-height:70vh;

    display:flex;

    align-items:center;

    padding:
    180px 50px 100px;

    position:relative;

    overflow:hidden;
}

.eco-hero::before{

    content:"";

    position:absolute;

    width:1000px;
    height:1000px;

    background:
    radial-gradient(
        circle,
        rgba(244,196,0,.10),
        transparent 70%
    );

    top:-300px;
    left:-300px;
}

.eco-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(244,196,0,.12);

    border:
    1px solid rgba(244,196,0,.25);

    color:var(--amarelo);

    font-size:14px;

    font-weight:700;

    margin-bottom:30px;
}

.eco-hero h1{

    font-size:92px;

    line-height:.95;

    margin-bottom:30px;

    max-width:900px;
}

.eco-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:760px;

    color:
    rgba(255,255,255,.78);
}


/* ===================================================== */
/* GRID                                                    */
/* ===================================================== */

.eco-grid-section{

    padding:
    40px 50px 120px;
}

.eco-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}


/* ===================================================== */
/* CARD                                                    */
/* ===================================================== */

.eco-card{

    padding:40px;

    border-radius:24px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);

    transition:.3s;

    position:relative;

    overflow:hidden;
}

.eco-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(244,196,0,.08),
        transparent 50%
    );

    opacity:0;

    transition:.3s;
}

.eco-card:hover{

    transform:
    translateY(-8px);

    border:
    1px solid rgba(244,196,0,.20);
}

.eco-card:hover::before{

    opacity:1;
}

.eco-card h3{

    font-size:28px;

    margin-bottom:20px;
}

.eco-card p{

    font-size:18px;

    line-height:1.8;

    color:
    rgba(255,255,255,.72);
}


/* ===================================================== */
/* RESPONSIVO                                              */
/* ===================================================== */

@media(max-width:900px){

    .eco-hero h1{

        font-size:62px;
    }

    .eco-hero p{

        font-size:20px;
    }
}

@media(max-width:600px){

    .eco-hero{

        padding:
        160px 30px 80px;
    }

    .eco-grid-section{

        padding:
        20px 30px 80px;
    }

    .eco-hero h1{

        font-size:48px;
    }
}
/* ===================================================== */
/* SOBRE                                                    */
/* ===================================================== */

.sobre-hero{

    min-height:70vh;

    display:flex;

    align-items:center;

    padding:
    180px 50px 100px;
}

.sobre-hero h1{

    font-size:88px;

    line-height:.95;

    margin-bottom:30px;

    max-width:900px;
}

.sobre-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:760px;

    color:
    rgba(255,255,255,.75);
}


/* ===================================================== */
/* GRID                                                    */
/* ===================================================== */

.sobre-content{

    padding:
    40px 50px 120px;
}

.sobre-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}


/* ===================================================== */
/* CARD                                                    */
/* ===================================================== */

.sobre-card{

    padding:40px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);
}

.sobre-card h2{

    font-size:34px;

    margin-bottom:24px;
}

.sobre-card p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.74);

    margin-bottom:20px;
}

.sobre-card ul{

    padding-left:20px;
}

.sobre-card li{

    margin-bottom:14px;

    color:
    rgba(255,255,255,.76);
}


/* ===================================================== */
/* FUNDADOR                                                */
/* ===================================================== */

.fundador{

    text-align:center;
}

.fundador img{

    width:140px;
    height:140px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:24px;

    border:
    3px solid rgba(244,196,0,.25);
}

.fundador span{

    display:block;

    margin-bottom:30px;

    color:var(--amarelo);

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;
}


/* ===================================================== */
/* RESPONSIVO                                              */
/* ===================================================== */

@media(max-width:900px){

    .sobre-hero h1{

        font-size:60px;
    }

    .sobre-hero p{

        font-size:20px;
    }
}

@media(max-width:600px){

    .sobre-hero{

        padding:
        160px 30px 80px;
    }

    .sobre-content{

        padding:
        20px 30px 80px;
    }

    .sobre-hero h1{

        font-size:46px;
    }
}
/* ===================================================== */
/* BETA                                                     */
/* ===================================================== */

.beta-hero{

    min-height:65vh;

    display:flex;

    align-items:center;

    padding:
    180px 50px 100px;
}

.beta-hero h1{

    font-size:88px;

    line-height:.95;

    margin-bottom:30px;

    max-width:900px;
}

.beta-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:760px;

    color:
    rgba(255,255,255,.75);
}


/* ===================================================== */
/* SECTION                                                  */
/* ===================================================== */

.beta-section{

    padding:
    40px 50px 120px;
}

.beta-wrapper{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:40px;

    align-items:start;
}


/* ===================================================== */
/* INFO                                                     */
/* ===================================================== */

.beta-info{

    padding:40px;
}

.beta-info h2{

    font-size:54px;

    margin-bottom:30px;
}

.beta-info p{

    font-size:20px;

    line-height:1.9;

    color:
    rgba(255,255,255,.74);

    margin-bottom:40px;
}


/* ===================================================== */
/* TAGS                                                     */
/* ===================================================== */

.beta-tags{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.beta-tags span{

    padding:
    12px 20px;

    border-radius:999px;

    background:
    rgba(244,196,0,.10);

    border:
    1px solid rgba(244,196,0,.20);

    color:var(--amarelo);

    font-size:14px;

    font-weight:700;
}


/* ===================================================== */
/* FORM CARD                                                */
/* ===================================================== */

.beta-form-card{

    padding:50px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);
}


/* ===================================================== */
/* FORM                                                     */
/* ===================================================== */

.form-group{

    margin-bottom:28px;
}

.form-group label{

    display:block;

    margin-bottom:12px;

    font-size:15px;

    color:
    rgba(255,255,255,.72);
}

.form-group input,
.form-group select{

    width:100%;

    padding:
    18px 20px;

    border-radius:16px;

    border:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.04);

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;
	appearance:none;
}

.form-group input:focus,
.form-group select:focus{

    border:
    1px solid rgba(244,196,0,.30);

    box-shadow:
    0 0 0 4px rgba(244,196,0,.08);
}


/* ===================================================== */
/* BUTTON                                                   */
/* ===================================================== */

.beta-btn{

    width:100%;

    padding:
    18px;

    border:none;

    border-radius:16px;

    background:var(--amarelo);

    color:#111;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.beta-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 20px 40px rgba(244,196,0,.18);
}


/* ===================================================== */
/* RESPONSIVO                                               */
/* ===================================================== */

@media(max-width:900px){

    .beta-wrapper{

        grid-template-columns:1fr;
    }

    .beta-hero h1{

        font-size:60px;
    }

    .beta-info h2{

        font-size:42px;
    }
}

@media(max-width:600px){

    .beta-hero{

        padding:
        160px 30px 80px;
    }

    .beta-section{

        padding:
        20px 30px 80px;
    }

    .beta-form-card{

        padding:35px;
    }

    .beta-hero h1{

        font-size:46px;
    }

    .beta-hero p{

        font-size:18px;
    }
}
.form-group select option{

    background:#111;

    color:#fff;
}
.beta-sucesso{

    max-width:1400px;

    margin:
    140px auto 0;

    padding:20px;

    border-radius:18px;

    background:
    rgba(0,255,120,.10);

    border:
    1px solid rgba(0,255,120,.20);

    color:#7dffb2;

    text-align:center;

    font-weight:700;

    font-size:16px;
}
/* ===================================================== */
/* CONTATO                                                  */
/* ===================================================== */

.contato-hero{

    min-height:60vh;

    display:flex;

    align-items:center;

    padding:
    180px 50px 100px;
}

.contato-hero h1{

    font-size:84px;

    line-height:.95;

    margin-bottom:30px;

    max-width:900px;
}

.contato-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:760px;

    color:
    rgba(255,255,255,.75);
}


/* ===================================================== */
/* GRID                                                    */
/* ===================================================== */

.contato-section{

    padding:
    40px 50px 120px;
}

.contato-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:40px;
}


/* ===================================================== */
/* INFO                                                     */
/* ===================================================== */

.contato-info{

    display:flex;

    flex-direction:column;

    gap:30px;
}

.contato-card{

    padding:40px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);
}

.contato-card h3{

    font-size:30px;

    margin-bottom:20px;
}

.contato-card p{

    font-size:18px;

    line-height:1.8;

    color:
    rgba(255,255,255,.72);
}


/* ===================================================== */
/* FORM                                                     */
/* ===================================================== */

.contato-form-card{

    padding:50px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);
}

.contato-form-card textarea{

    width:100%;

    min-height:180px;

    resize:none;

    padding:20px;

    border-radius:16px;

    border:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.04);

    color:#fff;

    font-size:16px;

    outline:none;
}


/* ===================================================== */
/* RESPONSIVO                                               */
/* ===================================================== */

@media(max-width:900px){

    .contato-grid{

        grid-template-columns:1fr;
    }

    .contato-hero h1{

        font-size:58px;
    }
}

@media(max-width:600px){

    .contato-hero{

        padding:
        160px 30px 80px;
    }

    .contato-section{

        padding:
        20px 30px 80px;
    }

    .contato-form-card{

        padding:35px;
    }

    .contato-hero h1{

        font-size:44px;
    }

    .contato-hero p{

        font-size:18px;
    }
}
/* ===================================================== */
/* EVOLUÇÃO                                                 */
/* ===================================================== */

.evolucao-hero{

    min-height:60vh;

    display:flex;

    align-items:center;

    padding:
    180px 50px 100px;
}

.evolucao-hero h1{

    font-size:84px;

    line-height:.95;

    margin-bottom:30px;

    max-width:900px;
}

.evolucao-hero p{

    font-size:24px;

    line-height:1.8;

    max-width:760px;

    color:
    rgba(255,255,255,.75);
}


/* ===================================================== */
/* TIMELINE                                                 */
/* ===================================================== */

.timeline-section{

    padding:
    40px 50px 140px;
}

.timeline{

    max-width:1100px;

    margin:auto;

    position:relative;
}

.timeline::before{

    content:"";

    position:absolute;

    left:24px;

    top:0;

    width:2px;

    height:100%;

    background:
    rgba(255,255,255,.08);
}


/* ===================================================== */
/* ITEM                                                     */
/* ===================================================== */

.timeline-item{

    position:relative;

    padding-left:90px;

    margin-bottom:70px;
}

.timeline-dot{

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--amarelo);

    position:absolute;

    left:16px;

    top:10px;

    z-index:2;

    box-shadow:
    0 0 20px rgba(244,196,0,.45);
}


/* ===================================================== */
/* CONTENT                                                  */
/* ===================================================== */

.timeline-content{

    padding:40px;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);
}

.timeline-content h2{

    font-size:34px;

    margin:
    18px 0 20px;
}

.timeline-content p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.72);
}


/* ===================================================== */
/* STATUS                                                   */
/* ===================================================== */

.timeline-status{

    display:inline-block;

    padding:
    10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    color:
    rgba(255,255,255,.72);
}

.status-done{

    background:
    rgba(0,255,120,.12);

    border:
    1px solid rgba(0,255,120,.20);

    color:#7dffb2;
}


/* ===================================================== */
/* RESPONSIVO                                               */
/* ===================================================== */

@media(max-width:900px){

    .evolucao-hero h1{

        font-size:58px;
    }
}

@media(max-width:600px){

    .evolucao-hero{

        padding:
        160px 30px 80px;
    }

    .timeline-section{

        padding:
        20px 30px 80px;
    }

    .timeline-item{

        padding-left:70px;
    }

    .timeline-content{

        padding:30px;
    }

    .evolucao-hero h1{

        font-size:44px;
    }

    .evolucao-hero p{

        font-size:18px;
    }

    .timeline-content h2{

        font-size:28px;
    }
}