:root {
  --font-proxima-nova: "proxima-nova", sans-serif;
  --color-white: #fff;
  --color-black: #050505;
  --color-dark-surface: rgba(20, 20, 20, 0.6);
  --color-primary: #ff004f;
  --color-primary-glow: #ff005080;
  --color-secondary: #7000ff;
  --color-gray: #a7a7a7;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-proxima-nova);
  background-color: var(--color-black);
  color: var(--color-white);
  width: 100%;
  margin: 0;
  cursor: default;
  overflow-x: hidden;
}

/* --- BACKGROUND FX (AURORA) --- */
.bg-effects {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; pointer-events: none;
}

.glow-blob {
    position: absolute;
    top: -10%; left: -10%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(0,0,0,0) 70%);
    opacity: 0.4; filter: blur(80px);
    animation: floatBlob 10s infinite alternate ease-in-out;
}

.glow-blob.two {
    top: auto; bottom: -10%; left: auto; right: -10%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.3) 0%, rgba(0,0,0,0) 70%);
    animation: floatBlob 15s infinite alternate-reverse ease-in-out;
}

.avatar-img {
    width: 60px;          /* Tamanho do círculo */
    height: 60px;
    border-radius: 50%;   /* Deixa totalmente redondo */
    object-fit: cover;    /* IMPORTANTE: Impede que a foto fique esticada/achatada */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
    margin-right: 15px;   /* Espaço entre a foto e o texto */
    background-color: #1a1a1a; /* Cor de fundo caso a imagem demore a carregar */
}

.person-badge {
    display: flex;
    align-items: center; /* Centraliza verticalmente foto e texto */
    margin-bottom: 1.5rem;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.person-badge:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.06);
}

.person-badge .name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.person-badge .role {
    font-size: 0.85rem;
    color: #a7a7a7;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* --- CURSOR --- */
@media (min-width: 992px) {
    body { cursor: none; }
    a, button { cursor: none !important; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* --- HEADER --- */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 5%;
  position: fixed;
  top: 0; z-index: 1000;
  transition: var(--transition-smooth);
}
header.scroll {
  padding: 1em 5%;
  background-color: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header--logo { height: 40px; }
.header--buttons { display: flex; gap: 3em; align-items: center; }
.header--buttons li a {
  color: var(--color-white); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 1px; transition: var(--transition-smooth);
}
.header--buttons li a:hover { color: var(--color-primary); }
.btn-contact {
  border: 1px solid var(--color-white); padding: 0.8em 1.5em;
  border-radius: 50px; background: var(--color-white);
  color: var(--color-black) !important; font-weight: 700;
}

/* --- CONTACT SECTION LAYOUT --- */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5% 4rem 5%;
  position: relative;
}

.contact-wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* --- GLASS CARD (O PULO DO GATO) --- */
.glass-card {
    width: 100%;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Barra de gradiente no topo */
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.subtitle {
    color: var(--color-primary);
    font-weight: 700; letter-spacing: 2px;
    font-size: 0.9rem; margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-header h2 {
    font-size: 4.5rem; font-weight: 800; line-height: 1.1;
    margin-bottom: 3rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--color-gray));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- EMAIL GIGANTE --- */
.email-container { margin-bottom: 4rem; }

.giant-email {
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    transition: var(--transition-smooth);
    position: relative;
    line-height: 1.2;
    
    /* CORREÇÃO */
    word-break: normal; 
    white-space: nowrap;
}

.icon-link {
    font-size: 0.5em; vertical-align: super;
    opacity: 0; transform: translate(-10px, 10px);
    transition: var(--transition-smooth); color: var(--color-primary);
}

.giant-email:hover {
    color: var(--color-primary);
    transform: scale(1.02);
}

.giant-email:hover .icon-link {
    opacity: 1; transform: translate(0, 0);
}

.email-sub {
    margin-top: 1rem; color: var(--color-gray); font-size: 1rem;
}

/* --- INFO GRID --- */
.info-grid {
    display: flex; justify-content: space-between;
    text-align: left; gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
}

.info-column h3 {
    font-size: 1.1rem; color: var(--color-gray);
    margin-bottom: 1.5rem; text-transform: uppercase;
    letter-spacing: 1px;
}

/* Diretores */
.person-badge {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-circle {
    width: 45px; height: 45px; border-radius: 50%;
    background: linear-gradient(135deg, #333, #111);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.1);
}

.person-badge .name { font-weight: 700; font-size: 1.1rem; }
.person-badge .role { font-size: 0.9rem; color: var(--color-primary); }

/* Tags Cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.tags-cloud span {
    padding: 0.5em 1em;
    background: rgba(255,255,255,0.05);
    border-radius: 6px; font-size: 0.9rem;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    color: var(--color-gray);
}

.tags-cloud span:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
    background: rgba(255, 0, 79, 0.1);
}

/* --- FOOTER --- */
.contact-footer {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    color: var(--color-gray); font-size: 0.9rem;
}

.socials { display: flex; gap: 1.5rem; }

.social-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-btn:hover {
    background: var(--color-white); color: var(--color-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* --- ANIMATIONS --- */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; transform: translateY(40px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVO --- */
@media screen and (max-width: 768px) {
    header { padding: 1em 1.5em; }
    .header--buttons li { display: none; }
    .header--buttons li:last-child { display: block; }
    
    .contact-section { padding: 7rem 5% 3rem 5%; }
    .glass-card { padding: 2.5rem 1.5rem; }
    
    .contact-header h2 { font-size: 3rem; }
    .giant-email {
        font-size: clamp(1.5rem, 6vw, 2.5rem); /* Fonte menor no mobile para caber */
        white-space: normal; /* Permite quebra se necessário */
        word-break: break-word;
    }
    
    .info-grid { flex-direction: column; gap: 2.5rem; }
    .person-badge { margin-bottom: 1.2rem; }
}