* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Forçando Inter em tudo */
}

body.contact-page {
    background-color: #020617;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* NAVBAR */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo .dot { color: #38bdf8; }

.back-link {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.back-link:hover { color: #38bdf8; }

/* CONTAINER */
.contact-container {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* HEADER INTRO */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(56, 189, 248, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.contact-intro h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-intro h1 span { color: #38bdf8; }

.contact-intro p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* GRID DE CARDS */
.contact-grid {
    display: grid;
    gap: 16px;
}

.contact-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    margin-right: 20px;
    transition: 0.3s;
}

.card-info {
    flex: 1;
}

.card-info .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 700;
}

.card-info .value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f1f5f9;
}

.external-arrow {
    color: #475569;
    transition: 0.3s;
}

.contact-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(138, 155, 161, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover .card-icon {
    background: #38bdf8;
    color: #020617;
    transform: scale(1.1);
}

.contact-card:hover .external-arrow {
    color: #38bdf8;
    transform: translate(2px, -2px);
}

/* FOOTER */
.contact-footer {
    padding: 40px;
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
}


/* LINKEDIN FIXO — TECH / DEV */
.linkedin-fixed {
  background: #0a66c2; /* azul oficial LinkedIn */
  color: #fff;
  font-weight: 800;
   position: fixed;
  bottom: 20px;
  right: 20px; /* lado direito */
  width: 48px;
  height: 48px;

  background-color: #0A66C2; /* azul LinkedIn */
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 20px;
  font-family: Arial, sans-serif;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkedin-fixed:hover {
   transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);

  border-color: #38bdf8;

  box-shadow:
    0 0 25px rgba(56, 189, 248, 0.45),
    0 25px 60px rgba(0, 0, 0, 0.9);
}

.linkedin-fixed.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .nav { padding: 30px 20px; }
    .contact-card { padding: 16px; }
    .card-icon { width: 48px; height: 48px; margin-right: 15px; }
    .card-info .value { font-size: 0.95rem; }
}