:root {
    --cor-fonte: rgb(219, 219, 219);
    --azul-principal: #4169E1;
    --azul-principal-hover: #5274db;
    --bg-dark: #1d1d1d;
    --bg-card: #252525;
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--bg-dark);
color: var(--cor-fonte);
line-height: 1.6;
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 40px;
}

.destaque { color: var(--azul-principal); }

header {
height: 86px;
position: sticky;
top: 0;
z-index: 100;
background: rgba(32, 32, 32, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #333;

}



.logo {
font-size: 24px;
font-weight: 800;
text-decoration: none;
color: #ffffff;
letter-spacing: -1px;

}

/* 
=============================
DESTAQUE (HERO-SECTION) SOBRE
=============================
*/

.hero-sobre {
padding: 100px 0 60px;
text-align: center;

}

.tagline {
text-transform: uppercase;
font-size: 12px;
letter-spacing: 2px;
color: var(--azul-principal);
font-weight: bold;

}

.hero-sobre h1 {
font-size: 48px;
margin: 15px 0;
color: #fff;

}

.hero-sobre p {
font-size: 18px;
max-width: 600px;
margin: 0 auto;
color: #aaa;

}

/* 
====
grid
====
 */

.conteudo-detalhado { padding: 60px 0; }

.grid-2 {
display: flex;
align-items: center;
gap: 60px;

}

.texto-bloco { flex: 1; }
.texto-bloco h2 { margin-bottom: 20px; font-size: 32px; color: #fff; }
.texto-bloco p { margin-bottom: 20px; }

.img-placeholder {
flex: 1;
background: linear-gradient(45deg, #252525, #333);
height: 300px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #444;

}

.decor-box {
padding: 20px;
border: 2px dashed var(--azul-principal);
color: var(--azul-principal);
font-weight: bold;
}

/* 
===============
O QUE PREZAMOS?
===============
 */

.pilares { padding: 80px 0; background: #181818; }

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

}

.pilar-card {
background: var(--bg-card);
padding: 40px 30px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s;

}

.pilar-card:hover { transform: translateY(-10px); }
.pilar-card .icon { font-size: 40px; margin-bottom: 20px; }
.pilar-card h3 { margin-bottom: 15px; color: #fff; }



/* 
==============
MENSAGEM FINAL
==============
*/

.cta-final {
padding: 100px 0;
text-align: center;
}



.btn-principal {
display: inline-block;
padding: 15px 35px;
background: var(--azul-principal);
color: #fff;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
margin-top: 30px;
transition: 0.3s;

}



.btn-principal:hover {
background: var(--azul-principal-hover);
box-shadow: 0 10px 20px rgba(65, 105, 225, 0.3);

}

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

footer {
background: #151515;
padding: 60px 0 30px;
border-top: 1px solid #333;

}



.footer-grid {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}



.footer-links { list-style: none; margin-top: 10px; }
.footer-links a { color: #888; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }



.copyright {
text-align: center;
font-size: 12px;
color: #555;
border-top: 1px solid #222;
padding-top: 20px;

}



.menuNav {
display: flex;
align-items: center;
gap: 32px;
width: 100%;

}

.menuNav-list li a {
color: #ffffff;
text-decoration: none;
}

.menuNav ul li a:hover {
color: var(--azul-principal);
}

.menuNav ul li a.ativo {
color: var(--azul-principal);
}

.menuNav-list {
display: flex;
list-style: none;
gap: 24px;
flex: 1;

}



.menuNav-item {
text-decoration: none;
color: #ffffff;
font-size: 14px;
}

/* 
========
EQUIPE
========
*/
.secao-equipe {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.titulo-equipe {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #fff;
}

/* FORÇANDO O FLASHCARD FICAR LADO A LADO SEMPRE (TOMAR CUIDADO)*/
.cards-grid-row {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    gap: 15px; 
    flex-wrap: nowrap; 
    width: 100%;
}

/* flashcard geral (estrutura) */
.flip-card {
    background-color: transparent;
    width: 220px; 
    height: 380px;
    perspective: 1000px; 
    flex-shrink: 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* GIRANDO O FLASHCARD */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* FACES DO FLASHCARD (GERAL PRO FRENTE E VERSO) */
.flip-card-front, .flip-card-back {
    position: absolute; 
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* FLASHCARD - FRENTE */
.flip-card-front {
    background-color: var(--bg-card);
    border: 1px solid #333;
    color: #fff;
}

.img-membro {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--azul-principal);
    margin-bottom: 15px;
    overflow: hidden;
}

.img-membro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cargo {
    color: var(--azul-principal);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.resumo {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
}

/* FLASHCARD - VERSO */
.flip-card-back {
    background-color: var(--azul-principal);
    color: white;
    transform: rotateY(180deg); 
}

.flip-card-back i {
    font-size: 40px;
    margin-bottom: 15px;
}

.mbti-tipo {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

/* @media (responsividade) */
@media (max-width: 1100px) {
    .cards-grid-row {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px;
    }
}
