@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Cores da Identidade Visual */
  --primary-blue: #0065cb;
  --primary-dark: #004a99;
  --navy-deep: #0f172a;
  --navy-light: #1e293b;
  --accent-cyan: #38bdf8;

  /* Cores Neutras */
  --bg-body: #f8fafc;
  --surface-white: #ffffff;
  --text-main: #475569;
  --text-heading: #1e293b;
  --text-light: #94a3b8;

  /* Sombras e Efeitos */
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --shadow-float:
    0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}
p {
  margin-bottom: 1rem;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
ul {
  list-style: none;
}

/* Utilitários de Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 100px 0;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
}
.btn-primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(0, 101, 203, 0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 101, 203, 0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--primary-blue);
  border-color: white;
}

/* --- NAVBAR GERAL (Transparente para Home) --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
.navbar.scrolled .logo img {
  filter: none;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}
.navbar.scrolled .nav-link {
  color: var(--navy-deep);
}
.nav-link:hover {
  color: var(--accent-cyan);
}
.navbar.scrolled .nav-link:hover {
  color: var(--primary-blue);
}

/* --- NAVBAR AZUL SÓLIDO (Para páginas internas/Vagas) --- */
.navbar-solid-blue {
  background-color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar-solid-blue .nav-link {
  color: white !important;
}
.navbar-solid-blue .nav-link:hover {
  color: var(--accent-cyan) !important;
}
.navbar-solid-blue .logo img {
  filter: brightness(0) invert(1) !important;
}
.navbar-solid-blue.scrolled {
  background-color: var(--primary-dark);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 95vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80")
    center/cover no-repeat fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.8) 50%,
    rgba(0, 101, 203, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding-right: 20px;
}
.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}
.hero-title span {
  color: transparent;
  background: linear-gradient(120deg, #38bdf8, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-desc {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- PARCEIROS --- */
.partners-section {
  background: white;
  padding: 50px 0;
  border-bottom: 1px solid #f1f5f9;
}
.partners-title {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  display: block;
}
.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.6;
}
.partner-logo {
  height: 35px;
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.7;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* --- SEÇÃO SOBRE --- */
.about-section {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  color: var(--navy-deep);
  margin-bottom: 30px;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}
.section-subtitle {
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}
.about-image-wrapper {
  position: relative;
}
.about-main-img {
  border-radius: 20px;
  box-shadow: var(--shadow-float);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--primary-blue);
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-float);
  text-align: center;
  border: 4px solid white;
}
.experience-badge span {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.experience-badge small {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CARROSSEL --- */
.carousel-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 40px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 30px;
  min-width: 100%;
  padding-left: 5px;
}

.carousel-card {
  width: 400px;
  height: 600px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  cursor: pointer;
  background: #0f172a;
}
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s,
    opacity 0.3s;
  opacity: 0.85;
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 1) 0%,
    rgba(15, 23, 42, 0.9) 60%,
    rgba(15, 23, 42, 0) 100%
  );
  padding: 30px 24px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.3s;
}
.carousel-card:hover .card-content {
  height: 100%;
  background: rgba(15, 23, 42, 0.98);
  justify-content: center;
  padding-top: 40px;
}
.carousel-card:hover .carousel-img {
  transform: scale(1.1);
  opacity: 0.3;
}
.card-content h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 15px;
  flex-shrink: 0;
}
.card-content p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  height: 60px;
  overflow: hidden;
  transition: all 0.3s;
}
.carousel-card:hover .card-content p {
  opacity: 1;
  height: auto;
  overflow: visible;
}
.carousel-nav {
  display: flex;
  gap: 10px;
}
.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 1.2rem;
}
.nav-btn:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* --- MISSÃO/VISÃO --- */
.mission-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy-deep);
  overflow: hidden;
}
.mission-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(20%);
  mask-image: linear-gradient(to right, transparent, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black);
}
.mission-card {
  position: relative;
  background: white;
  padding: 60px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  box-shadow: var(--shadow-float);
  z-index: 10;
}
.values-list {
  margin-top: 30px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.check-icon {
  min-width: 24px;
  height: 24px;
  background: #dbeafe;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 4px;
}

/* --- FOOTER & EXTRAS --- */
.contact-section {
  background: white;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-form-area {
  padding: 80px;
}
.map-area {
  min-height: 550px;
  background: #eee;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  background: #f8fafc;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
}
.footer {
  background: #0b1120;
  color: #94a3b8;
  padding-top: 80px;
  border-top: 4px solid var(--primary-blue);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo-area img {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.footer-links li {
  margin-bottom: 14px;
}
.footer-links a {
  color: #94a3b8;
  transition: 0.3s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}
.newsletter-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
}
.newsletter-input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.footer-bottom {
  padding: 30px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- CHAT WIDGET --- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 360px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2e8f0;
}
.chat-widget.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: white;
  padding: 20px;
  color: var(--navy-deep);
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.close-chat {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.2rem;
}
.chat-body {
  flex: 1;
  padding: 20px;
  background: white;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.msg-ai {
  background: #f8fafc;
  color: var(--text-heading);
  border-bottom-left-radius: 2px;
  border: 1px solid #e2e8f0;
}
.msg-user {
  background: var(--primary-blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.typing-indicator {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
  margin-left: 10px;
}
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.chat-btn {
  background: white;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}
.chat-btn:hover {
  background: var(--primary-blue);
  color: white;
}

/* --- PÁGINA DE VAGAS (ESTILOS ESPECÍFICOS) --- */
.bg-pattern {
  background-color: #f1f5f9;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 20px 20px;
}
.cv-section {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.cv-paper {
  background: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 4px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}
.cv-paper::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: -5px;
  background: white;
  z-index: -1;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.cv-header {
  text-align: center;
  margin-bottom: 50px;
}
.cv-header h1 {
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cv-header p {
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
}
.center-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.profile-upload-box {
  width: 150px;
  height: 150px;
  border: 2px dashed #cbd5e1;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  background: #f8fafc;
}
.profile-upload-box:hover {
  border-color: var(--primary-blue);
  background: #eff6ff;
}
.profile-upload-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.upload-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  pointer-events: none;
}
.upload-placeholder i {
  font-size: 32px;
  margin-bottom: 5px;
}
.upload-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
}
.image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-preview.hidden {
  display: none;
}
.section-title {
  color: var(--navy-deep);
  font-size: 1.2rem;
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.span-2 {
  grid-column: span 2;
}
.paper-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 40px 0;
}
.education-radios {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input {
  position: absolute;
  opacity: 0;
}
.radio-label {
  display: block;
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--text-main);
  font-weight: 600;
  transition: 0.3s;
  background: #f8fafc;
}
.radio-card input:checked + .radio-label {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0, 101, 203, 0.3);
}
.mt-4 {
  margin-top: 1.5rem;
}
.form-footer {
  text-align: center;
  margin-top: 50px;
}
.btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* --- PÁGINA DE LINKS (VERSÃO LIGHT & CLEAN - FINAL CORRIGIDA) --- */
.links-body {
  /* Fundo Azul Bem Clarinho (Estilo do Site) */
  background-color: #f8fafc;
  background-image: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Manrope", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.links-container {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Links Clean */
.links-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
.profile-frame {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 3px solid white;
}
.links-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.links-header h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--navy-deep);
}
.links-header p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 15px;
}

/* Lista de Links (Cartões Brancos) */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  background: white;
  color: var(--navy-deep);
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

/* Ícone */
.card-icon {
  width: 42px;
  height: 42px;
  background: #eff6ff; /* Azul bem clarinho */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-blue);
  flex-shrink: 0;
  transition: 0.2s;
}

/* Texto */
.card-content {
  flex: 1;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 0;
}
.card-subtitle {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Seta */
.card-arrow {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-right: 5px;
  transition: 0.2s;
}

/* Hover Geral */
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-blue);
}
.link-card:hover .card-icon {
  background: var(--primary-blue);
  color: white;
}
.link-card:hover .card-arrow {
  color: var(--primary-blue);
  transform: translateX(3px);
}

/* Botão Destaque (WhatsApp) */
.link-card.featured {
  background: #25d366; /* Verde Whats */
  color: white;
  border: 1px solid #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.link-card.featured .card-title,
.link-card.featured .card-subtitle {
  color: white;
}
.link-card.featured .card-subtitle {
  opacity: 0.9;
}
.link-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.link-card.featured .card-arrow {
  color: white;
  opacity: 0.8;
}
.link-card.featured:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* Footer Linktree */
.links-footer {
  margin-top: 40px;
  text-align: center;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}
.social-row a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.2rem;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-decoration: none;
}
.social-row a:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}
.copyright {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-content {
    padding-left: 20px;
  }
  .about-grid,
  .contact-wrapper,
  .mission-bg-img,
  .footer-top {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .mission-bg-img {
    height: 300px;
    position: relative;
    width: 100%;
    margin-bottom: -100px;
    opacity: 1;
  }
  .mission-card {
    margin: 0 20px;
    padding: 30px;
    margin-top: -50px;
  }
  .experience-badge {
    bottom: -20px;
    left: 20px;
    padding: 20px;
  }
  .experience-badge span {
    font-size: 2rem;
  }
  .carousel-card {
    width: 85vw;
    height: 500px;
  }
  .chat-widget {
    width: 90%;
    right: 5%;
    bottom: 20px;
    height: 60vh;
  }
  /* Vagas Mobile */
  .cv-paper {
    padding: 30px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: span 1;
  }
  .education-radios {
    flex-direction: column;
  }
  .radio-label {
    text-align: center;
  }
}
