﻿/* =====================================================
   TalentCare — Single Page Styles
   ===================================================== */

/* --- Variáveis ---------------------------------------- */
:root {
  --navy:       #1c2a3a;
  --navy-mid:   #243447;
  --blue:       #2471a3;
  --blue-light: #3498db;
  --teal:       #0e9e85;
  --teal-dark:  #0a7a67;
  --green:      #27ae60;
  --purple:     #7d3c98;
  --orange:     #d35400;
  --gray-bg:    #f4f7fa;
  --gray-line:  #dde3ea;
  --text:       #1c2a3a;
  --text-muted: #5a6a7a;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --radius:     10px;
  --transition: .3s ease;
}

/* --- Reset & Base ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Shared Utilities ------------------------------- */
.section-tag {
  display: inline-block;
  background: rgba(36,113,163,.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag--light { background: rgba(255,255,255,.15); color: var(--white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 300; line-height: 1.2; margin-bottom: 12px; }
.section-header h2 strong { font-weight: 800; color: var(--blue); }
.section-header p { font-size: 17px; color: var(--text-muted); }
.section-header--light h2, .section-header--light p { color: var(--white); }
.section-header--light p { opacity: .85; }
.btn-primary {
  display: inline-block;
  background: var(--blue-light);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(52,152,219,.4);
}
.btn-primary:hover { background: #1a6fa8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(52,152,219,.45); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #202946;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 55px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,.85); font-size: 16px; padding: 7px 14px; border-radius: 5px; transition: background var(--transition), color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 18px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 5px;
  margin-left: 8px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s, opacity .25s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================
   HERO CAROUSEL
   ===================================================== */
.carousel-section { position: relative; overflow: hidden; margin-top: 68px; }
.carousel-viewport { width: 100%; overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.carousel-slide {
  flex: 0 0 100%;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,42,58,.82) 0%, rgba(28,42,58,.45) 70%, rgba(28,42,58,.2) 100%);
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.slide-content {
  max-width: 600px;
  margin-left: calc((100% - 1200px) / 2 + 24px);
  margin-right: 24px;
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.3);
}
.slide-content h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.slide-content p { font-size: clamp(15px, 2vw, 18px); opacity: .92; margin-bottom: 32px; line-height: 1.65; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: rgba(255,255,255,.32); border-color: var(--white); }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar { background: var(--teal); }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.stat-label  { font-size: 13px; opacity: .9; font-weight: 500; }

/* =====================================================
   QUEM SOMOS
   ===================================================== */
.about-section { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.about-image img { width: 100%; height: 500px; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; }
.about-text h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.about-text h2 strong { font-weight: 800; color: var(--blue); }
.about-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-bg);
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.pillar i { font-size: 22px; color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.pillar div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: 15px; color: var(--text); }
.pillar span { font-size: 14px; color: var(--text-muted); }

.pillar--valores { align-items: flex-start; }

.valores-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
  padding: 0;
}

.valores-list li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 10px;
  border-left: 2px solid var(--teal);
}

.valores-list li strong {
  color: var(--text);
  font-weight: 700;
}

/* ---- ESSENCE ACCORDION ---- */
.essence-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 400px;
}

.essence-item {
  border-radius: 8px;
  overflow: visible;
  position: relative;
}

.essence-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #1e3a5f;
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: left;
  position: relative;
}

.essence-btn span {
  flex: 1;
}

.essence-btn i {
  font-size: 14px;
  color: var(--white);
  transition: transform 0.35s ease;
}

.essence-btn:hover {
  background: #2a5280;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.essence-btn.active {
  background: #a67c00;
  border-radius: 8px 8px 0 0;
}

.essence-btn.active:hover {
  background: #c49508;
}

.essence-btn.active i {
  transform: rotate(180deg);
}

.essence-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.25s ease,
              padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  border-radius: 0 0 8px 8px;
  will-change: max-height, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.essence-content.active {
  max-height: 300px;
  opacity: 1;
  padding: 24px;
}

.essence-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   SERVICOS
   ===================================================== */
.services-section { padding: 96px 0; background: var(--gray-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:nth-child(1) { border-top-color: var(--blue); }
.service-card:nth-child(2) { border-top-color: var(--blue); }
.service-card:nth-child(3) { border-top-color: var(--blue); }
.service-card:nth-child(4) { border-top-color: var(--navy); }
.service-card:nth-child(5) { border-top-color: var(--purple); }
.service-card:nth-child(6) { border-top-color: var(--orange); }
.sc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.sc-blue   { background: rgba(36,113,163,.12); color: var(--blue); }
.sc-teal   { background: rgba(14,158,133,.12); color: var(--teal); }
.sc-green  { background: rgba(39,174, 96,.12); color: var(--green); }
.sc-navy   { background: rgba(28, 42, 58,.10); color: var(--navy); }
.sc-purple { background: rgba(125,60,152,.12); color: var(--purple); }
.sc-orange { background: rgba(211,84,  0,.12); color: var(--orange); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.65; }
.sc-list { display: flex; flex-direction: column; gap: 7px; }
.sc-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.sc-list li i { color: var(--blue); font-size: 11px; flex-shrink: 0; }

/* =====================================================
   METODOLOGIA
   ===================================================== */
.methodology-section { padding: 80px 0; background: #1e2a38; color: var(--white); }

.methodology-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 0;
  margin-top: 48px;
}

.methodology-column {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.talentcare-column {
  background: #c4a868;
}

.company-column {
  background: #2c3e50;
}

.methodology-column h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 28px;
  color: var(--white);
  text-align: center;
}

/* --- TalentCare items: formato SETA, fundo navy, ícone tan, texto branco --- */
.talentcare-column .methodology-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px 28px 14px 16px;
  background: #2c3e50;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}

.talentcare-column .item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c4a868;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talentcare-column .item-icon i {
  font-size: 22px;
}

.talentcare-column .item-text p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  font-weight: 500;
}

/* --- Layout interno da coluna Sua Empresa --- */
.company-inner {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1;
  align-items: stretch;
}

.company-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 42%;
}

/* --- Company items: formato SETA, fundo tan, ícone navy grande, texto navy --- */
.company-column .methodology-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 16px;
  background: #c4a868;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  margin-bottom: 0;
}

.company-column .item-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #2c3e50;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-column .item-icon i {
  font-size: 24px;
}

.company-column .item-text p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  font-weight: 600;
}

/* --- 3 troféus lado a lado à direita das setas --- */
.results-column {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex: 1;
  align-items: stretch;
  align-self: flex-start;
  margin-top: 41px;
  height: 192px;
}

.result-box {
  background: #c4a868;
  border-radius: 4px;
  padding: 8px 4px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.result-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.result-box i {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.result-box p {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contact-section { padding: 96px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 300; margin-bottom: 14px; }
.contact-info > p { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i {
  width: 42px; height: 42px;
  background: rgba(36,113,163,.1);
  color: var(--blue);
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 14px; font-weight: 700; color: var(--text); }
.contact-item span { font-size: 14px; color: var(--text-muted); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gray-bg);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.contact-form-wrapper { background: var(--gray-bg); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(52,152,219,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--text-muted); cursor: pointer; line-height: 1.5; flex: 1; white-space: nowrap; }
.form-check .field-error-msg { width: 100%; padding-left: 26px; margin-top: 2px; }
.btn-submit {
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}
.btn-submit:hover { background: #1a6fa8; transform: translateY(-2px); }
.btn-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }

/* ---- Shake animation ---- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%  { transform: translateX(-6px); }
  30%  { transform: translateX(6px); }
  45%  { transform: translateX(-4px); }
  60%  { transform: translateX(4px); }
  75%  { transform: translateX(-2px); }
  90%  { transform: translateX(2px); }
}
.field-shake { animation: shake 0.45s ease; }

/* ---- Erro de campo ---- */
.form-group.has-error label { color: #e74c3c; transition: color 0.2s; }
.field-error { border-color: #e74c3c !important; }
.field-error-msg {
  color: #e74c3c;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ---- Mensagem de erro no topo do form (checkbox) ---- */
.form-message {
  display: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-message.error {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* ---- Estado de sucesso: substitui o formulário ---- */
.form-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}
.form-success-state .success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #28a745;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.form-success-state .success-icon i {
  font-size: 36px;
  color: #fff;
}
.form-success-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.form-success-state p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  max-width: 340px;
}
.form-success-state .btn-new-msg {
  margin-top: 8px;
  background: none;
  border: 1.5px solid #28a745;
  color: #28a745;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.form-success-state .btn-new-msg:hover {
  background: #28a745;
  color: #fff;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-top { background: var(--navy); padding: 68px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer-logo .logo-img { height: 40px; width: auto; display: block; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.6; }
.footer-nav h4, .footer-contact h4 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-contact p i { color: var(--blue); font-size: 13px; }
.footer-bottom { background: var(--navy); padding: 18px 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom p { font-size: 13px; color: #a67c00; }
.footer-bottom p a { color: #a67c00; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom p a:hover { color: #c49508; text-decoration: underline; }

/* =====================================================
   RESPONSIVE — Tablet (<= 992px)
   ===================================================== */
@media (max-width: 992px) {
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
  }
  .main-nav.open { max-height: 500px; padding: 12px 16px 20px; }
  .nav-link { padding: 11px 14px; border-radius: 6px; }
  .nav-cta  { margin-left: 0; text-align: center; margin-top: 4px; }
  .slide-content { margin-left: 24px; margin-right: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .essence-content { padding: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-grid { grid-template-columns: 1fr; }
  .methodology-column { padding: 32px 24px; }
  .methodology-column h3 { font-size: 20px; letter-spacing: 2px; }
  .company-column .methodology-item { clip-path: none; border-radius: 4px; }
  .company-inner { flex-direction: column; }
  .results-column { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .result-box { flex: 1; min-width: 120px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =====================================================
   RESPONSIVE — Mobile (<= 640px)
   ===================================================== */
@media (max-width: 640px) {
  .carousel-slide { min-height: 550px; }
  .slide-content h1 { font-size: 26px; }
  .slide-content p  { font-size: 14px; }
  .carousel-btn { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .essence-btn { padding: 16px 20px; font-size: 15px; }
  .essence-content.active { padding: 18px; }
  .essence-content p { font-size: 14px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .methodology-column h3 { font-size: 18px; }
  .company-column .methodology-item { clip-path: none; border-radius: 4px; }
  .company-inner { flex-direction: column; }
  .results-column { width: 100%; flex-direction: column; }
  .result-box { padding: 16px 10px; }
  .result-box i { font-size: 28px; }
}

/* page-hero kept for vagas.php / other subpages */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--white);
  margin-top: 68px;
}
.page-hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 300; margin-bottom: 10px; }
.page-hero p  { font-size: 18px; opacity: .9; }
.notice { background: #d4edda; border-left: 4px solid #28a745; padding: 15px; margin-bottom: 20px; border-radius: 4px; color: #155724; }
.form-row { display: flex; gap: 15px; flex-wrap: wrap; }
.form-row label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text); }
