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

html{
    scroll-behavior:smooth;
}

body{

    font-family:Segoe UI,Arial,sans-serif;
    color:#222;
    background:#f8fafc;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

header{

    background:#0B1F3A;
    color:white;
    position:sticky;
    top:0;

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:75px;

}

nav a{

    color:white;
    text-decoration:none;
    margin-left:25px;

}

.hero{

    background:linear-gradient(135deg,#0F4C81,#2563EB);
    color:white;
    padding:100px 0;

}

.hero-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;

}

.hero h1{

    font-size:52px;
    margin-bottom:25px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.hero-card{

    background:white;
    color:#222;
    border-radius:10px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.btn{

    display:inline-block;
    background:#2563EB;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

section{

    padding:80px 0;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:35px;

}

.card{

    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.techs{

    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;

}

.techs span{

    background:#2563EB;
    color:white;
    padding:10px 20px;
    border-radius:30px;

}

.contact{

    background:#0B1F3A;
    color:white;
    text-align:center;

}

footer{

    background:#06101D;
    color:white;
    text-align:center;
    padding:30px;

}

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:38px;

}

nav{

display:none;

}

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

.contact{

    background:linear-gradient(135deg,#07192D,#0F4C81);
    color:white;
    text-align:center;

}

.contact h2{

    font-size:42px;
    margin-bottom:15px;

}

.contact-subtitle{

    max-width:700px;
    margin:0 auto 50px;
    color:#dbeafe;
    line-height:1.8;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-bottom:50px;

}

.contact-card{

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:15px;
    padding:35px;
    transition:.3s;
    backdrop-filter:blur(12px);

}

.contact-card:hover{

    transform:translateY(-8px);
    background:rgba(255,255,255,.12);

}

.icon{

    font-size:42px;
    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;
    color:white;

}

.contact-card a{

    color:#7dd3fc;
    text-decoration:none;
    font-weight:bold;
    word-break:break-word;

}

.contact-card a:hover{

    color:white;

}

.contact-card p{

    color:#f3f4f6;
    line-height:1.7;
    margin-bottom:15px;

}

.whatsapp{

    background:#22c55e;

}

.whatsapp:hover{

    background:#16a34a;

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

.about{

    background:white;

}

.section-title{

    max-width:900px;
    margin:auto;
    margin-bottom:60px;

}

.section-title span{

    color:#2563EB;
    font-weight:700;
    letter-spacing:2px;
    font-size:.9rem;

}

.section-title h2{

    margin-top:15px;
    font-size:2.6rem;
    line-height:1.3;
    color:#0B1F3A;

}

.about-grid{

    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:start;

}

.about-text p{

    font-size:1.1rem;
    line-height:2;
    color:#555;
    margin-bottom:25px;

}

.about-stats{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.stat-card{

    background:#fff;
    border-radius:15px;
    padding:28px;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(15,76,129,.08);
    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#2563EB;

    box-shadow:0 18px 40px rgba(37,99,235,.20);

}

.stat-card h3{

    color:#0F4C81;
    margin-bottom:15px;

}

.stat-card p{

    color:#666;
    line-height:1.7;

}

@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;

}

.about-stats{

grid-template-columns:1fr;

}

.section-title h2{

font-size:2rem;

}

}

