/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Segoe UI",Arial,sans-serif;

    background:#07131f;

    color:#FFF;

}


/* ==========================================================
   HEADER
========================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:80px;

    padding:0 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(5,15,30,.96);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:999;

}

.logo{

    font-size:42px;

    font-weight:700;

}

.logo span{

    color:#ffc400;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

nav a:hover{

    color:#ffc400;

}


/* ==========================================================
   HERO
========================================================== */

.hero{

    max-width:1500px;

    margin:110px auto 50px;

    padding:20px 50px;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:90px;

    align-items:center;

}


/* ==========================================================
   IMAGEM
========================================================== */

.hero-imagem{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.hero-img{

    width:100%;

    display:block;

    border-radius:16px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}


/* ==========================================================
   BOTÃO
========================================================== */

.btn{

    width:100%;

    margin-top:18px;

    padding:18px;

    background:#ffc400;

    color:#111;

    text-decoration:none;

    text-align:center;

    font-size:22px;

    font-weight:bold;

    border-radius:12px;

    transition:.35s;

}

.btn:hover{

    background:#ffd84f;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,196,0,.35);

}


/* ==========================================================
   TEXTO
========================================================== */

.hero-texto{

    max-width:720px;

}

.hero-texto h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-texto h2{

    font-size:46px;

    color:#ffc400;

    margin-bottom:40px;

}

.hero-texto p{

    font-size:28px;

    line-height:48px;

    color:#DDD;

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    margin-top:60px;

    padding:30px;

    text-align:center;

    background:#050b14;

    color:#888;

}


/* ==========================================================
   NOTEBOOK
========================================================== */

@media(max-width:1400px){

.hero{

    grid-template-columns:360px 1fr;

    gap:60px;

}

.hero-texto h1{

    font-size:58px;

}

.hero-texto h2{

    font-size:38px;

}

.hero-texto p{

    font-size:24px;

    line-height:40px;

}

}


/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1000px){

header{

    padding:20px;

}

.hero{

    grid-template-columns:320px 1fr;

    gap:40px;

    padding:20px;

}

.hero-texto h1{

    font-size:44px;

}

.hero-texto h2{

    font-size:32px;

}

.hero-texto p{

    font-size:20px;

    line-height:34px;

}

}


/* ==========================================================
   CELULAR
========================================================== */

@media(max-width:768px){

header{

    height:auto;

    padding:20px;

    flex-direction:column;

    gap:15px;

}

.logo{

    font-size:34px;

}

.hero{

    margin-top:130px;

    grid-template-columns:1fr;

    gap:35px;

    text-align:center;

}

.hero-imagem{

    width:100%;

}

.hero-img{

    max-width:420px;

    margin:auto;

}

.btn{

    max-width:420px;

    margin:20px auto 0;

}

.hero-texto{

    max-width:100%;

}

.hero-texto h1{

    font-size:38px;

}

.hero-texto h2{

    font-size:28px;

}

.hero-texto p{

    font-size:18px;

    line-height:30px;

}

}


/* ==========================================================
   CELULAR PEQUENO
========================================================== */

@media(max-width:480px){

nav{

    display:none;

}

.hero{

    margin-top:90px;

    padding:15px;

}

.hero-img{

    max-width:100%;

}

.btn{

    max-width:100%;

}

.hero-texto h1{

    font-size:30px;

}

.hero-texto h2{

    font-size:24px;

}

.hero-texto p{

    font-size:17px;

    line-height:28px;

}

}

/* ===================================================
   PROJETOS
=================================================== */

.projetos{

    max-width:1200px;

    margin:40px auto 70px;

    padding:20px;

    text-align:center;

}

.projetos h2{

    font-size:42px;

    margin-bottom:15px;

    color:#ffc400;

}

.projetos>p{

    font-size:20px;

    color:#DDD;

    margin-bottom:40px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.card{

    background:#0b1a2b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    padding:30px;

    transition:.35s;

    box-shadow:0 0 25px rgba(0,0,0,.25);

}

.card:hover{

    transform:translateY(-6px);

    border-color:#ffc400;

    box-shadow:0 0 30px rgba(255,196,0,.20);

}

.card h3{

    font-size:28px;

    margin-bottom:20px;

    color:#FFF;

}

.card p{

    font-size:18px;

    color:#DDD;

    line-height:30px;

    min-height:90px;

}

.btn-projeto{

    display:inline-block;

    margin-top:25px;

    padding:15px 35px;

    background:#ffc400;

    color:#111;

    font-weight:bold;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn-projeto:hover{

    background:#ffd84f;

    transform:translateY(-3px);

}