/* --- CONFIGURAÇÕES DE NÚCLEO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #000; /* Fundo preto base */
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Camada de fundo com a imagem home.jpeg */
.background-overlay {
    position: fixed;
    inset: 0;
    background: url("imagens/home.jpeg") no-repeat center center/cover;
    opacity: 0.3; /* Imagem bem escura para destacar os cards */
    z-index: -1;
}

/* HEADER */
.header {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.logo {
    width: 280px;
    filter: drop-shadow(0 0 15px rgba(0, 234, 255, 0.5));
}

/* CONTAINER PRINCIPAL */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 100px;
}

.glitch-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 900;
    letter-spacing: 5px;
    color: #00eaff;
    text-shadow: 2px 2px 10px rgba(0, 234, 255, 0.5);
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* GRID DE MEMBROS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD DO MEMBRO */
.member-card {
    position: relative;
    background: rgba(0, 10, 20, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 234, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00eaff;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.2);
}

/* Efeito de brilho que percorre o card */
.card-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.1), transparent);
    transition: 0.5s;
}

.member-card:hover .card-glow {
    left: 100%;
}

/* CABEÇALHO DO CARD */
.info-header h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.role-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00eaff;
    background: rgba(0, 234, 255, 0.1);
    padding: 4px 12px;
    border-radius: 5px;
    border-left: 3px solid #00eaff;
    margin-bottom: 20px;
}

.role-tag.CEO {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    border-left-color: #ffcc00;
}

/* LISTA DE TAREFAS */
.task-list {
    list-style: none;
    margin-bottom: 25px;
}

.task-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.task-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00eaff;
    font-weight: 800;
}

/* NÚMERO DE CONTATO */
.contact-number {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #00ff88; /* Verde WhatsApp */
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-number i {
    font-size: 22px;
    filter: drop-shadow(0 0 5px #00ff88);
}

/* BOTÃO VOLTAR */
.navigation {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-return {
    padding: 15px 40px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border: 2px solid #00eaff;
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 2px;
}

.btn-return:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 30px #00eaff;
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}