/* =====================================================
EXPERT SECTION — TOTALMENTE ISOLADO
===================================================== */

#expert{

/* VARIÁVEIS LOCAIS */

--cyan:#22D3EE;
--text-main:#FFFFFF;
--text-secondary:#94A3B8;

--card-bg:#031425;
--card-bg-2:#041C33;


/* TIPOGRAFIA LOCAL */

font-family:'Inter',system-ui,-apple-system,sans-serif;
line-height:1.6;
color:var(--text-main);


/* LAYOUT */

display:flex;
justify-content:center;
padding:80px 20px;

/* FUNDO ADICIONADO */

background:linear-gradient(
180deg,
#020617 0%,
#031425 45%,
#041C33 100%
);

}


/* CARD */

#expert .expert-card{
max-width:1100px;
width:100%;
display:grid;
grid-template-columns:40% 60%;
background:linear-gradient(135deg,var(--card-bg) 0%,var(--card-bg-2) 100%);
border-radius:30px;
border:1px solid rgba(34,211,238,0.15);
overflow:hidden;
position:relative;
box-shadow:0 25px 50px -12px rgba(0,0,0,0.5);
transition:transform .3s ease,box-shadow .3s ease;
}

#expert .expert-card:hover{
transform:translateY(-5px);
box-shadow:0 30px 60px -12px rgba(34,211,238,.2);
border-color:rgba(34,211,238,.3);
}


/* FOTO */

#expert .expert-photo{
position:relative;
width:100%;
height:100%;
overflow:hidden;
}

#expert .expert-photo-frame{
width:100%;
height:100%;
position:relative;
}

/* IMG isolada */

#expert .expert-image{
width:100%;
height:100%;
object-fit:cover;
object-position:top;
display:block;
max-width:100%;
transition:transform .7s ease;
}

#expert .expert-card:hover .expert-image{
transform:scale(1.05);
}

#expert .expert-photo::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to right,transparent 70%,rgba(3,20,37,.8) 100%);
pointer-events:none;
z-index:1;
}

#expert .expert-photo::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:radial-gradient(circle at 30% 30%,rgba(34,211,238,.1) 0%,transparent 70%);
z-index:2;
pointer-events:none;
}


/* TEXTO */

#expert .expert-text{
padding:40px 45px;
display:flex;
align-items:center;
position:relative;
z-index:3;
background:rgba(3,20,37,.3);
backdrop-filter:blur(10px);
}

#expert .expert-content{
width:100%;
max-height:520px;
overflow-y:auto;
padding-right:10px;
}


/* TAG */

#expert .expert-tag{
color:var(--cyan);
font-size:13px;
font-weight:800;
letter-spacing:1.5px;
margin-bottom:15px;
display:inline-block;
background:rgba(34,211,238,.1);
padding:6px 15px;
border-radius:50px;
border:1px solid rgba(34,211,238,.2);
backdrop-filter:blur(5px);
}


/* TITULO */

#expert .expert-title{
font-size:1.9rem;
line-height:1.2;
font-weight:800;
margin-bottom:20px;
color:var(--text-main);
}


/* LISTA */

#expert .expert-bullet-list{
margin-bottom:25px;
}

#expert .expert-bullet-item{
display:flex;
gap:12px;
margin-bottom:15px;
transition:transform .3s ease;
}

#expert .expert-bullet-item:hover{
transform:translateX(5px);
}

#expert .bullet-icon{
width:18px;
height:18px;
border:2px solid var(--cyan);
border-radius:50%;
flex-shrink:0;
margin-top:2px;
position:relative;
box-shadow:0 0 10px rgba(34,211,238,.5);
}

#expert .bullet-icon::after{
content:"";
position:absolute;
inset:3px;
background:var(--cyan);
border-radius:50%;
animation:pulse 2s infinite;
}

#expert .expert-bullet-item p{
color:var(--text-secondary);
font-size:.95rem;
margin:0;
line-height:1.5;
}

#expert .expert-bullet-item strong{
color:var(--text-main);
font-weight:700;
}


/* BIO */

#expert .expert-bio{
margin-bottom:25px;
padding:15px 0;
border-top:1px solid rgba(34,211,238,.1);
border-bottom:1px solid rgba(34,211,238,.1);
}


/* BADGES */

#expert .expert-badges{
display:flex;
gap:8px;
flex-wrap:wrap;
}

#expert .expert-badge{
background:linear-gradient(135deg,rgba(34,211,238,.15),rgba(16,247,178,.05));
border:1px solid rgba(34,211,238,.25);
padding:5px 14px;
border-radius:50px;
font-size:12px;
color:var(--text-main);
font-weight:500;
}


/* SOCIAL */

#expert .expert-social{
display:flex;
gap:10px;
align-items:center;
}

/* LINK isolado */

/* SOCIAL */

#expert .expert-social{
display:flex;
gap:10px;
align-items:center;

/* ESPAÇO DO ELEMENTO ACIMA */

margin-top:22px;
padding-top:12px;

/* SEPARAÇÃO VISUAL SUAVE */

border-top:1px solid rgba(34,211,238,.08);
}


/* LINK */

#expert .social-link{

display:flex;
align-items:center;
justify-content:center;

width:36px;
height:36px;

background:rgba(34,211,238,.1);
border:1px solid rgba(34,211,238,.2);

border-radius:50%;

transition:all .3s ease;

color:var(--cyan);

text-decoration:none;

}


/* SVG */

#expert .social-link svg{

width:18px;
height:18px;

fill:currentColor;

}


/* HOVER */

#expert .social-link:hover{

background:var(--cyan);
border-color:var(--cyan);

color:#020617; /* Ícone visível */

transform:translateY(-3px);

box-shadow:0 6px 16px rgba(34,211,238,.4);

}


/* RESPONSIVO */

@media (max-width:768px){

#expert{
padding:60px 15px;
}

#expert .expert-card{
grid-template-columns:1fr;
}

#expert .expert-photo{
height:380px;
}

#expert .expert-image{
object-position:center top;
}

#expert .expert-photo::after{
background:linear-gradient(to bottom,transparent 60%,rgba(3,20,37,.9));
}

#expert .expert-text{
padding:30px 25px;
}

#expert .expert-content{
max-height:none;
overflow:visible;
padding-right:0;
}

#expert .expert-title{
font-size:1.6rem;
}

}