@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ================= NAVBAR ================= */

header{
    min-height:100vh;
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(15,23,42,.75);
    backdrop-filter:blur(15px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.logo span{
    color:#ff3b3b;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:white;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav ul li a:hover{
    color:#ff3b3b;
}

nav ul li a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-6px;
    background:#ff3b3b;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

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

.hero{
    width:90%;
    max-width:1300px;
    margin:auto;
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding-top:100px;
}

.hero-text{
    flex:1;
}

.hero-text h3{
    color:#ff3b3b;
    font-size:22px;
}

.hero-text h1{
    font-size:75px;
    margin:10px 0;
}

.hero-text h2{
    font-size:28px;
    color:#cbd5e1;
    margin-bottom:20px;
}

.hero-text p{
    color:#bfc9d4;
    line-height:1.9;
    max-width:600px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 40px;
    background:#ff3b3b;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(255,59,59,.35);
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:520px;
    border-radius:25px;
    box-shadow:0 30px 60px rgba(0,0,0,.45);
}

/* ================= TÍTULOS ================= */

section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:100px 0;
}

.titulo{
    text-align:center;
    margin-bottom:60px;
}

.titulo h2{
    font-size:45px;
    color:#fff;
    position:relative;
}

.titulo h2::after{
    content:'';
    width:90px;
    height:4px;
    background:#ff3b3b;
    display:block;
    margin:12px auto;
    border-radius:50px;
}

/* ================= SOBRE ================= */

.sobre-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.foto{
    flex:1;
    display:flex;
    justify-content:center;
}

.foto img{
    width:360px;
    height:360px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #ff3b3b;
    box-shadow:0 20px 50px rgba(255,59,59,.25);
}

.texto{
    flex:1.4;
}

.texto h3{
    font-size:38px;
    margin-bottom:20px;
}

.texto p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:18px;
}

.info{
    display:flex;
    gap:30px;
    margin-top:35px;
}

.info div{
    background:#1e293b;
    padding:25px;
    border-radius:15px;
    text-align:center;
    flex:1;
    transition:.3s;
}

.info div:hover{
    transform:translateY(-10px);
    background:#273449;
}

.info h4{
    color:#ff3b3b;
    font-size:34px;
}

.info span{
    color:#cbd5e1;
}

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

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

.card{
    background:#1e293b;
    padding:35px;
    border-radius:20px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.card:hover{
    transform:translateY(-12px);
    border-color:#ff3b3b;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.card i{
    font-size:55px;
    color:#ff3b3b;
    margin-bottom:25px;
}

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

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

.card a{
    display:inline-block;
    margin-top:25px;
    color:#ff3b3b;
    font-weight:600;
}

/* ================= CONTATO ================= */

.contato form{
    max-width:750px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contato input,
.contato textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#1e293b;
    color:white;
    font-size:16px;
    outline:none;
}

.contato textarea{
    min-height:180px;
    resize:vertical;
}

.contato input:focus,
.contato textarea:focus{
    border:2px solid #ff3b3b;
}

.contato button{
    padding:18px;
    border:none;
    border-radius:12px;
    background:#ff3b3b;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contato button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,59,59,.35);
}

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

footer{
    margin-top:80px;
    padding:50px 20px;
    text-align:center;
    background:#0b1120;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
    font-size:34px;
    margin-bottom:10px;
}

footer p{
    color:#94a3b8;
    margin-bottom:25px;
}

.redes{
    display:flex;
    justify-content:center;
    gap:20px;
}

.redes a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1e293b;
    color:white;
    font-size:22px;
    transition:.3s;
}

.redes a:hover{
    background:#ff3b3b;
    transform:translateY(-6px);
}

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

@media(max-width:1000px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text p{
    margin:auto;
}

.hero-image img{
    width:100%;
    max-width:420px;
}

.sobre-container{
    flex-direction:column;
    text-align:center;
}

.info{
    flex-direction:column;
}

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

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

.hero-text h2{
    font-size:22px;
}

}

@media(max-width:600px){

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

.hero-text h2{
    font-size:18px;
}

.titulo h2{
    font-size:34px;
}

.card{
    padding:25px;
}

.foto img{
    width:250px;
    height:250px;
}

}