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

.section{
    padding-bottom: 90px;
    position:relative;
}

.section-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-bottom:55px;
}

/* BADGE */

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    color:#d9e4f5;
    font-size:13px;
    margin-bottom:22px;
    gap: 10px;
}

/* TITULO */

.section-header h2{
    max-width:760px;
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-1.5px;
    margin-bottom:18px;
}

.section-header h2 span{
    display:block;
    background:linear-gradient(90deg,var(--primary),var(--primary2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* DESCRIÇÃO */

.section-header p{
    max-width:620px;
    color:#b8c4db;
    font-size:17px;
    line-height:1.7;
}

/* GRID */

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* CARD */

.about-card{
    background:linear-gradient(180deg,#13192c,#0d1323);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:28px;
    min-height:220px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.about-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(255,255,255,.03),transparent);
    opacity:0;
    transition:.35s;
}

.about-card:hover{
    transform:translateY(-8px);
    border-color:rgba(58,174,255,.3);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.about-card:hover::before{
    opacity:1;
}

/* ÍCONE */

.about-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--primary),var(--primary2));
    color:#fff;
    font-size:22px;
    margin-bottom:22px;
    box-shadow:0 12px 28px rgba(47,125,255,.28);
}

/* TITULO */

.about-card h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.3;
}

/* TEXTO */

.about-card p{
    color:#b8c4db;
    font-size:15px;
    line-height:1.75;
}

/* ANIMAÇÃO */

.about-card{
    animation:fadeUp .7s ease both;
}

.about-card:nth-child(2){animation-delay:.08s;}
.about-card:nth-child(3){animation-delay:.16s;}

/* RESPONSIVO */

@media(max-width:1000px){

.about-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

}

@media(max-width:700px){

.section{
    padding: 0;
padding-bottom:75px;
}

.section-header{
margin-bottom:40px;
}

.section-header h2{
font-size:34px;
}

.section-header p{
font-size:15px;
}

.about-grid{
grid-template-columns:1fr;
gap:18px;
}

.about-card{
padding:22px;
min-height:auto;
border-radius:18px;
}

.about-icon{
width:44px;
height:44px;
font-size:20px;
margin-bottom:18px;
}

.about-card h3{
font-size:18px;
margin-bottom:10px;
}

.about-card p{
font-size:14px;
line-height:1.65;
}

}