/* ====================================
   Ishii Advogados — Vanilla CSS
   Design System (Replaces Tailwind)
   Colors: White / Navy #333 / Red Accents
   ==================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Outfit', sans-serif; background: #fff; color: #4b5563; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
::selection { background: rgba(220, 38, 38, 0.3); }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #333333;
  --navy-dark: #222222;
  --red: #E11D48;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-600: #16a34a;
  --green-700: #15803d;
  --wa-green: #25D366;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --yellow-500: #eab308;
  --white: #ffffff;
  --max-w: 80rem;
  --px: 1.5rem;
}

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }

/* ===== BACKGROUND GRID ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky; top: 0; width: 100%; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(51,51,51,0.08);
}
.site-nav .container { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.site-nav__left { display: flex; align-items: center; gap: 3rem; }
.site-nav__logo img { width: 150px; height: auto; }
.site-nav__links {
  display: none; align-items: center; gap: 2rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400);
}
.site-nav__links a { transition: color 0.3s; }
.site-nav__links a:hover { color: var(--navy); }
.site-nav__links a.active {
  color: var(--navy); border-bottom: 1px solid var(--red-600); padding-bottom: 2px;
  display: flex; align-items: center; gap: 0.5rem;
}
.site-nav__links a.active .nav-icon { color: var(--red-500); }
.site-nav__right { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__menu-btn { color: var(--navy); display: block; }
.site-nav__cta {
  display: none; padding: 0.625rem 1.25rem; background: var(--green-600); color: #fff;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.3s; box-shadow: 0 10px 15px -3px rgba(22,101,52,0.2);
}
.site-nav__cta:hover { background: var(--red-600); box-shadow: 0 10px 15px -3px rgba(220,38,38,0.4); }

/* Mobile Menu Premium */
.mobile-menu {
  position: fixed; top: 5rem; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 49; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.mobile-menu a {
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.15em; padding: 0.5rem 1rem;
  position: relative; overflow: hidden; text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(15px);
}
.mobile-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--red-600); transition: width 0.3s ease;
}
.mobile-menu.open a {
  animation: slideUpFade 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
/* Staggering the animation */
.mobile-menu.open a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.4s; }

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

.mobile-menu a:hover, .mobile-menu a:active { color: var(--red-600) !important; }
.mobile-menu a:hover::after, .mobile-menu a:active::after { width: 40%; }
.mobile-menu a:active { transform: scale(0.95); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; z-index: 10; overflow: hidden;
  display: flex; align-items: center;
  min-height: 90vh; background: var(--navy);
}
.hero__slides {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 10;
}
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; visibility: hidden;
  transform: translateX(100%);
  transition: none;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center;
  padding: 8rem 0;
}
.hero__slide.active {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  z-index: 15;
  transition: transform 1200ms cubic-bezier(.6,0,.4,1), opacity 0.8s ease, visibility 0.8s ease;
}
.hero__sweep {
  position: absolute; top: 0; bottom: 0; z-index: 25; pointer-events: none;
  transform: translateX(250%);
}
.hero__sweep--gray {
  width: 44%; left: 0; background: var(--navy-dark);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: -30px 0 60px rgba(0,0,0,0.25);
}
.hero__sweep--red {
  width: 62%; left: 0; background: var(--red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: -20px 0 50px rgba(225,29,72,0.3);
}
.hero__sweep--run.hero__sweep--gray {
  transition: transform 1100ms cubic-bezier(.6,0,.4,1) 150ms;
  transform: translateX(-250%);
}
.hero__sweep--run.hero__sweep--red {
  transition: transform 1400ms cubic-bezier(.6,0,.4,1) 0ms;
  transform: translateX(-250%);
}
.hero__sweep--white {
  width: 35%; left: 0; background: #ffffff;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: -15px 0 40px rgba(0,0,0,0.1);
}
.hero__sweep--run.hero__sweep--white {
  transition: transform 800ms cubic-bezier(.6,0,.4,1) 250ms;
  transform: translateX(-250%);
}
.hero__dots {
  position: absolute; bottom: 2rem; left: 5rem;
  display: flex; gap: 0.5rem; z-index: 30;
}
.hero__dot {
  width: 1.5rem; height: 4px; border-radius: 2px;
  background: rgba(51, 51, 51, 0.2); border: none;
  transition: all 0.5s ease; cursor: pointer;
}
.hero__dot.active {
  width: 3rem; background: var(--red-600);
}
.hero__nav {
  position: absolute; right: 2rem; bottom: 2rem;
  display: flex; gap: 0.5rem; z-index: 30;
}
.hero__nav-btn {
  width: 3rem; height: 3rem; background: var(--red-600); border: 1px solid var(--red-600);
  display: flex; align-items: center; justify-content: center; color: #ffffff;
  transition: all 0.3s; cursor: pointer; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero__nav-btn:hover {
  background: var(--navy); border-color: var(--navy);
}
.hero__nav-btn svg {
  width: 1.25rem; height: 1.25rem;
}
.hero__ambient {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
}
.hero__gradient {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, #fff, var(--gray-50), var(--gray-200));
}
.hero__glow-1 {
  position: absolute; top: -8rem; right: -8rem;
  width: 800px; height: 800px;
  background: rgba(220,38,38,0.05); border-radius: 50%;
  filter: blur(100px); mix-blend-mode: multiply; opacity: 0.7;
  animation: pulse 8s ease-in-out infinite;
}
.hero__glow-2 {
  position: absolute; bottom: 0; left: 25%;
  width: 600px; height: 600px;
  background: rgba(51,51,51,0.05); border-radius: 50%;
  filter: blur(80px); mix-blend-mode: multiply;
}
.hero__micro-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(#333 1px, transparent 1px), linear-gradient(90deg, #333 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__vignette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 10rem;
  background: linear-gradient(to top, var(--gray-50), transparent);
}
.hero__content { position: relative; z-index: 10; width: 100%; }
.hero__inner { max-width: 48rem; }
.hero__badge {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero__badge-dot {
  display: inline-flex; width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--red-500); animation: pulse 2s infinite;
}
.hero__badge-text {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red-500);
}
.hero__title {
  font-size: 2.25rem; font-weight: 500; letter-spacing: -0.05em;
  line-height: 1.1; margin-bottom: 1.5rem;
  background: linear-gradient(100deg, #333 30%, #666 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; padding-bottom: 0.1em;
  text-shadow: 0 0 40px rgba(225,29,72,0.15);
}
.hero__title-light { font-style: italic; color: var(--gray-400); font-weight: 300; -webkit-text-fill-color: var(--gray-400); font-size: 1.5rem; letter-spacing: normal; }
.hero__desc {
  font-size: 1.125rem; color: var(--gray-500); max-width: 36rem;
  line-height: 1.75; margin-bottom: 2.5rem;
}
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 1.5rem; background: var(--green-600); color: #fff;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(22,101,52,0.2);
}
.btn-wa:hover { background: var(--green-700); box-shadow: 0 10px 15px -3px rgba(22,101,52,0.4); }
.btn-wa__icon {
  position: relative; z-index: 10; width: 1.5rem; height: 1.5rem;
  border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s; border: 1px solid rgba(255,255,255,0.2);
}
.btn-wa:hover .btn-wa__icon { transform: translateX(4px); }
.btn-wa__icon svg { width: 14px; height: 14px; fill: currentColor; }

.btn-wa--large {
  position: relative; overflow: hidden;
  padding: 0.625rem 1.5rem; font-weight: 700;
  box-shadow: 0 15px 35px -10px rgba(22,101,52,0.4);
  border-radius: 2px; border: 1px solid rgba(255,255,255,0.1);
}
.btn-wa--large:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -12px rgba(22,101,52,0.6); }
.btn-wa--large .btn-shine {
  position: absolute; top: 0; left: -150%; width: 120%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg); transition: left 1s ease-in-out; z-index: 10; pointer-events: none;
}
.btn-wa--large:hover .btn-shine { left: 150%; }
.btn-wa--large .btn-wa__icon { width: 2rem; height: 2rem; margin-left: 0.25rem; }
.btn-wa--large .btn-wa__icon svg { width: 16px; height: 16px; }

.btn-link {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid rgba(51,51,51,0.3); padding-bottom: 0.25rem;
  transition: border-color 0.3s;
}
.btn-link:hover { border-color: var(--navy); }

/* Modificador: Link vermelho */
.btn-link--red {
  color: var(--red-600);
  border-color: rgba(220,38,38,0.3);
}
.btn-link--red:hover {
  border-color: var(--red-600);
}
.btn-cta-final {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 0.625rem 1.5rem; background: var(--green-600); color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem;
  overflow: hidden; box-shadow: 0 20px 25px -5px rgba(22,101,52,0.2);
  transition: all 0.3s; width: 100%;
}
.btn-cta-final:hover { background: var(--green-700); }
.btn-cta-final .btn-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.2);
  transform: translateY(100%); transition: transform 0.3s;
}
.btn-cta-final:hover .btn-overlay { transform: translateY(0); }
.btn-cta-final__content { position: relative; z-index: 10; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }

/* ===== HERO VISUALS (Desktop rings) ===== */
.hero__visuals {
  display: none; position: absolute; top: 50%; right: 0; transform: translateY(-50%);
  width: 650px; height: 650px; z-index: 10; pointer-events: none;
}
.hero__ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid;
}
.hero__ring--1 { border-color: rgba(51,51,51,0.1); transform: scale(0.85); animation: spin 60s linear infinite; }
.hero__ring--2 { border-color: rgba(220,38,38,0.1); transform: scale(1.05); animation: spin 40s linear infinite reverse; }
.hero__sphere {
  position: absolute; inset: 2.5rem; border-radius: 50%; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid #fff; background: #fff;
}
.hero__sphere img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.9;
  transition: transform 15s ease;
}
.hero__sphere:hover img { transform: scale(1.1); }
.hero__sphere-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(51,51,51,0.3), transparent, rgba(220,38,38,0.1));
  mix-blend-mode: overlay;
}
.hero__sphere-ring { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); }
.hero__logo-badge {
  position: absolute; bottom: 3rem; left: 0; z-index: 20;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  width: 8rem; height: 8rem; border-radius: 50%;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
  border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  animation: bounce 4s ease-in-out infinite;
}
.hero__logo-badge img { width: 5rem; height: auto; }

/* ===== MODULES GRID ===== */
.modules {
  border-bottom: 1px solid rgba(51,51,51,0.05);
  background: #fff; position: relative; z-index: 10; width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.modules__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(51,51,51,0.05);
  max-width: 1440px; margin: 0 auto;
}
.module {
  padding: 1.5rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 1rem;
  min-height: 180px; transition: background 0.5s; cursor: pointer;
  border-bottom: 1px solid rgba(51,51,51,0.05);
}
.module:hover { background: rgba(249,250,251,0.5); }
.module__num {
  position: absolute; right: -1.625rem; bottom: -1rem;
  width: 120px; height: 120px;
  color: var(--gray-200); /* Cor para o currentColor do SVG */
  opacity: 0.4;
  user-select: none; pointer-events: none;
  transition: transform 0.7s;
}
.module__num svg {
  width: 100%; height: 100%;
}
.module:hover .module__num { transform: scale(1.1); }
.module__icon-wrap {
  position: relative; z-index: 10;
}
.module__icon {
  width: 3rem; height: 3rem; background: var(--red-50); color: var(--red-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.5s; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--red-100);
}
.module:hover .module__icon { background: var(--red-600); color: #fff; }
.module__icon svg { width: 24px; height: 24px; }
.module__text { position: relative; z-index: 10; margin-top: 0.5rem; }
.module__title {
  font-size: 1.125rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 0.25rem;
  transition: color 0.3s;
}
.module:hover .module__title { color: var(--red-600); }
.module__sub {
  font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); font-weight: 700; font-style: italic;
}
.module__bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: var(--red-600); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.module:hover .module__bar { transform: scaleX(1); }

/* ===== SECTION HEADERS ===== */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: var(--red-50); border: 1px solid var(--red-100); margin-bottom: 1.5rem;
}
.section-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); animation: pulse 2s infinite; }
.section-badge__text { font-size: 10px; font-weight: 700; color: var(--red-600); text-transform: uppercase; letter-spacing: 0.2em; }
.section-label {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red-500); margin-bottom: 2rem;
}
.section-label__line { width: 2.5rem; height: 1px; background: var(--red-500); }
.section-title {
  font-size: 1.875rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 2rem;
}
.section-title--large { font-size: 2.25rem; }
.section-title .highlight { color: var(--red-600); font-style: italic; font-weight: 300; }
.section-title .light { color: var(--gray-300); font-style: italic; font-weight: 300; }

/* ===== BENTO GRID (ÁREAS) ===== */
.areas { overflow: hidden; border-bottom: 1px solid rgba(51,51,51,0.05); padding: 6rem 0; position: relative; }
.areas__glow {
  position: absolute; top: 0; right: 0; transform: translateY(-50%) translateX(50%);
  width: 500px; height: 500px; background: rgba(239,68,68,0.05);
  filter: blur(100px); border-radius: 50%; pointer-events: none;
}
.areas__header { text-align: center; margin-bottom: 5rem; pointer-events: none; }
.areas__header .section-title { margin-bottom: 2rem; }
.areas__header p { font-size: 1.125rem; color: var(--gray-400); max-width: 42rem; margin: 0 auto; line-height: 1.75; }
.bento-grid {
  display: grid; grid-template-columns: 1fr; z-index: 20;
  gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); overflow: hidden;
}
.bento-card {
  display: block; position: relative; overflow: hidden; min-height: 260px;
  background: #fff; z-index: 20; transition: all 0.7s;
}
.bento-card:hover {
  box-shadow: 0 20px 40px -15px rgba(220,38,38,0.15);
  z-index: 30; transform: translateY(-2px);
}
.bento-card__hover-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(254,242,242,0.8), transparent, transparent);
  opacity: 0; transition: opacity 0.7s; pointer-events: none;
}
.bento-card:hover .bento-card__hover-bg { opacity: 1; }
.bento-card__content {
  position: relative; z-index: 20; display: flex; flex-direction: column;
  height: 100%; padding: 2rem; justify-content: flex-start; gap: 1rem;
  pointer-events: none;
}
.bento-card__icon {
  display: flex; width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--red-50); color: var(--red-500);
  align-items: center; justify-content: center;
  transition: all 0.5s; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--red-100);
}
.bento-card:hover .bento-card__icon {
  transform: scale(1.1); background: var(--red-600); color: #fff;
  border-color: var(--red-600);
}
.bento-card__icon svg { width: 32px; height: 32px; }
.bento-card__title {
  font-size: 1.25rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.bento-card:hover .bento-card__title { color: var(--red-600); }
.bento-card__desc {
  font-size: 0.875rem; color: #4b5563; line-height: 1.6; transition: color 0.3s;
}
ul.bento-card__desc {
  padding-left: 1rem; list-style-type: disc; margin-bottom: 1.5rem; margin-top: 1rem;
}
.bento-card:hover .bento-card__desc { color: var(--navy); }
.bento-card__bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--red-600); transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s;
}
.bento-card:hover .bento-card__bar { transform: scaleX(1); }
.areas__cta { margin-top: 4rem; display: flex; justify-content: center; width: 100%; z-index: 20; position: relative; }

/* ===== STEPS SECTION ===== */
.steps { padding: 6rem 0; position: relative; overflow: hidden; background: rgba(249,250,251,0.5); border-bottom: 1px solid rgba(51,51,51,0.05); }
.steps__bg { position: absolute; inset: 0; z-index: 0; }
.steps__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.05; filter: grayscale(1); pointer-events: none; }
.steps__header { text-align: center; margin-bottom: 5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.steps__timeline { position: relative; }
.steps__line {
  display: none; position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 2px;
  background: linear-gradient(to right, rgba(220,38,38,0.6), rgba(220,38,38,0.3), transparent);
  z-index: 15;
}
.steps__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 10; }
.step { position: relative; }
.step__dot {
  display: none; width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--red-600); border: 3px solid #fff;
  position: absolute; top: -0.5rem; left: 2.5rem; z-index: 20;
  box-shadow: 0 0 15px rgba(220,38,38,0.5); transition: transform 0.3s;
}
.step:hover .step__dot { transform: scale(1.25); }
.step__card {
  background: var(--navy); padding: 2rem; border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative; min-height: 220px; transition: transform 0.5s;
}
.step:hover .step__card { transform: translateY(-0.5rem); }
.step__num {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 2.25rem; font-weight: 900; color: rgba(255,255,255,0.05);
  pointer-events: none; transition: color 0.3s;
}
.step:hover .step__num { color: rgba(220,38,38,0.2); }
.step__label {
  display: inline-block; position: relative; z-index: 10;
  font-size: 0.75rem; font-weight: 700; color: var(--red-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(239,68,68,0.1); padding: 0.125rem 0.5rem; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.step__text { color: var(--gray-300); font-size: 0.875rem; line-height: 1.75; position: relative; z-index: 10; }
.steps__footer { text-align: center; max-width: 48rem; margin: 0 auto; }
.steps__footer p { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 2.5rem; line-height: 1.75; font-weight: 500; }

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  overflow: hidden; border-bottom: 1px solid rgba(51,51,51,0.05);
  position: relative; background: rgba(249,250,251,0.3); padding: 6rem 0;
}
.carousel-section__header { text-align: center; margin-bottom: 4rem; }
.carousel { display: grid; grid-template-columns: 1fr; background: #fff; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); max-width: var(--max-w); margin: 0 auto; }
.carousel__image {
  position: relative; overflow: hidden; height: 400px;
  border-bottom: 1px solid rgba(51,51,51,0.05);
}
.carousel__image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9;
  transition: all 0.5s ease-out;
}
.carousel__content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.carousel__sub {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red-500); margin-bottom: 1.5rem;
  display: block; transition: all 0.3s ease-out;
}
.carousel__title {
  font-size: 2.25rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
  min-height: 2.4em; transition: all 0.3s ease-out;
}
.carousel__desc {
  font-size: 0.875rem; color: var(--gray-400); margin-bottom: 2.5rem;
  line-height: 1.75; font-weight: 300; min-height: 6em;
  transition: all 0.3s ease-out;
}
.carousel__desc ul { display: flex; flex-direction: column; gap: 0.5rem; }
.carousel__desc li { display: flex; align-items: flex-start; gap: 0.5rem; }
.carousel__desc li svg { color: var(--red-500); margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; }
.carousel__nav {
  display: flex; align-items: center; gap: 0.25rem;
  border: 1px solid rgba(51,51,51,0.1); width: fit-content; padding: 0.25rem;
}
.carousel__nav button {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; color: var(--gray-400); transition: all 0.3s;
}
.carousel__nav button:first-child { border-right: 1px solid rgba(51,51,51,0.05); }
.carousel__nav button:hover { background: rgba(51,51,51,0.05); color: var(--navy); }
.carousel__nav button svg { width: 20px; height: 20px; transition: transform 0.3s; }
.carousel__nav button:first-child:hover svg { transform: translateX(-2px); }
.carousel__nav button:last-child:hover svg { transform: translateX(2px); }
.carousel__dots { display: flex; gap: 0.5rem; align-items: center; margin-top: 1.5rem; }
.carousel__dot {
  height: 4px; border-radius: 9999px; transition: all 0.5s;
}
.carousel__dot--active { width: 3rem; background: var(--red-600); }
.carousel__dot--inactive { width: 1.5rem; background: var(--gray-200); }

/* ===== DIFERENCIAIS ===== */
.diferenciais { z-index: 10; border-bottom: 1px solid rgba(51,51,51,0.05); padding: 6rem 0; position: relative; }
.diferenciais__header {
  display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem;
}
.diferenciais__label {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red-500);
}
.diferenciais__label span { width: 2rem; height: 1px; background: var(--red-500); }
.diferenciais__list { display: flex; flex-direction: column; gap: 1.5rem; }
.diferencial {
  background: #fff; padding: 2rem; position: relative; overflow: hidden;
  border: 1px solid rgba(51,51,51,0.05); box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.5s; border-radius: 2px;
}
.diferencial:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.diferencial__accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red-600); transition: width 0.5s;
}
.diferencial:hover .diferencial__accent { width: 8px; }
.diferencial__body { display: flex; flex-direction: column; gap: 2rem; }
.diferencial__left { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.diferencial__icon {
  display: flex; width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.5s; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--red-100);
}
.diferencial:hover .diferencial__icon { background: var(--red-600); color: #fff; }
.diferencial__icon svg { width: 32px; height: 32px; }
.diferencial__name { font-size: 1.5rem; font-weight: 500; color: var(--navy); letter-spacing: -0.025em; }
.diferencial__right p {
  font-size: 1rem; color: var(--gray-500); line-height: 1.75; font-weight: 300;
}
.diferencial__right .bold { color: var(--navy); font-weight: 500; }
.diferencial__right .italic { color: var(--navy); font-style: italic; }

/* ===== SOBRE (QUEM SOMOS) ===== */
.sobre { overflow: hidden; border-bottom: 1px solid rgba(51,51,51,0.05); padding: 8rem 0; position: relative; }
.sobre__decor {
  position: absolute; top: 0; right: 0; width: 33%; height: 100%;
  background: rgba(249,250,251,0.5); z-index: -1;
  transform: skewX(-12deg) translateX(8rem);
}
.sobre__grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; }
.sobre__visual { position: relative; }
.sobre__image {
  position: relative; z-index: 10; aspect-ratio: 4/5; border-radius: 2px;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(51,51,51,0.05);
}
.sobre__image img { width: 100%; height: 100%; object-fit: cover; }
.sobre__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(51,51,51,0.4), transparent, transparent);
}
.sobre__float-years {
  display: none; position: absolute; top: -2.5rem; left: -2.5rem; z-index: 20;
  background: #fff; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(51,51,51,0.05);
}
.sobre__float-years-inner { display: flex; align-items: center; gap: 1rem; }
.sobre__float-years-icon {
  width: 3rem; height: 3rem; background: var(--red-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--red-600);
}
.sobre__float-years-icon svg { width: 28px; height: 28px; }
.sobre__float-years-num { font-size: 1.875rem; font-weight: 700; color: var(--navy); line-height: 1; }
.sobre__float-years-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); font-weight: 700; }
.sobre__float-metric {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 20;
  background: var(--navy); padding: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.sobre__float-metric-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.sobre__float-metric-row { display: flex; align-items: center; gap: 1rem; }
.sobre__float-metric-row svg { width: 32px; height: 32px; color: var(--red-500); }
.sobre__float-metric-val { font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.sobre__float-metric-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); }
.sobre__text-title { margin-bottom: 2rem; }
.sobre__quote {
  font-size: 1.125rem; color: var(--gray-500); margin-bottom: 2.5rem;
  line-height: 1.75; font-weight: 300; border-left: 2px solid var(--gray-100);
  padding-left: 2rem; font-style: italic;
}
.sobre__checks { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.sobre__check { display: flex; align-items: flex-start; gap: 1rem; }
.sobre__check svg { color: var(--red-500); margin-top: 4px; flex-shrink: 0; width: 20px; height: 20px; }
.sobre__check p { color: var(--gray-500); font-size: 0.875rem; }
.sobre__check .bold { color: var(--navy); font-weight: 700; }
.sobre__cta-row { display: flex; align-items: center; gap: 1.5rem; }
.sobre__cta-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid rgba(51,51,51,0.1);
  display: flex; align-items: center; justify-content: center;
}
.sobre__cta-icon svg { width: 24px; height: 24px; color: var(--navy); }
.sobre__cta-text { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }

/* ===== SÓCIO FUNDADOR ===== */
.socio { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; border-bottom: 1px solid rgba(51,51,51,0.05); }
.socio__bg {
  position: absolute; inset: 0; opacity: 0.05; background-size: cover;
  background-position: center; mix-blend-mode: overlay;
}
.socio__grid {
  display: flex; flex-direction: column; align-items: center; gap: 4rem;
  position: relative; z-index: 10;
}
.socio__image-wrap { width: 100%; max-width: 22rem; margin-left: 1.5rem; position: relative; }
.socio__image-behind {
  position: absolute; inset: 0; background: var(--red-600);
  transform: translateX(-1rem) translateY(1rem); border-radius: 2px;
}
.socio__image-border {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.2);
  transform: translateX(0.75rem) translateY(-0.75rem); border-radius: 2px;
}
.socio__image-main {
  position: relative; background: var(--navy); border-radius: 2px;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  aspect-ratio: 4/5;
}
.socio__image-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(1); opacity: 0.9;
  transition: all 0.7s;
}
.socio__image-main:hover img { transform: scale(1.05); filter: grayscale(0.3); }
.socio__image-overlay { position: absolute; inset: 0; background: rgba(51,51,51,0.2); mix-blend-mode: multiply; }
.socio__image-ring { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); pointer-events: none; }
.socio__badge-wrap { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.socio__badge {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); padding: 1rem; border-radius: 2px;
  transform: translateY(1rem); opacity: 0; transition: all 0.5s;
}
.socio__image-main:hover .socio__badge { transform: translateY(0); opacity: 1; }
.socio__badge-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red-500); font-weight: 700; margin-bottom: 0.25rem; }
.socio__badge-val { color: #fff; font-weight: 500; letter-spacing: 0.05em; }
.socio__text { width: 100%; color: #fff; }
.socio__name { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 2rem; color: #fff; }
.socio__bio { display: flex; flex-direction: column; gap: 1.5rem; color: var(--gray-300); line-height: 1.75; font-weight: 300; font-size: 1.125rem; }
.socio__bio .bold { font-weight: 700; color: #fff; }
.socio__bio .medium { font-weight: 500; color: #fff; }
.socio__bio .italic-light { font-style: italic; color: var(--gray-400); }
.socio__stats {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
}
.socio__stat { display: flex; align-items: center; gap: 1rem; }
.socio__stat-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1px solid rgba(239,68,68,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--red-500);
}
.socio__stat-icon svg { width: 24px; height: 24px; }
.socio__stat-val { font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.socio__stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); font-weight: 700; }
.socio__stat-divider { display: none; width: 1px; height: 3rem; background: rgba(255,255,255,0.1); }

/* ===== SOCIAL PROOF ===== */
.reviews { padding: 6rem 0; background: rgba(249,250,251,0.5); border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.reviews__header { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
.reviews__stars { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.reviews__stars-icons { display: flex; color: var(--yellow-500); flex-shrink: 0; }
.reviews__stars-icons svg { width: 16px; height: 16px; }
.reviews__stars-text { font-size: 0.625rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; }
.reviews__google-badge {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
  background: #fff; border: 1px solid var(--gray-100); box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-radius: 2px; width: fit-content;
}
.reviews__google-badge svg { width: 32px; height: 32px; flex-shrink: 0; }
.reviews__google-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); line-height: 1; }
.reviews__google-sub { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.review-card {
  background: #fff; padding: 1.5rem; border: 1px solid var(--gray-100);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); position: relative;
}
.review-card__quote { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(239,68,68,0.1); }
.review-card__quote svg { width: 64px; height: 64px; }
.review-card__text {
  font-size: 1.125rem; color: var(--navy); font-weight: 300;
  line-height: 1.75; margin-bottom: 2rem; font-style: italic;
  position: relative; z-index: 10;
}
.review-card__author { display: flex; align-items: center; gap: 1rem; }
.review-card__avatar {
  width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: 1px solid var(--gray-100);
}
.review-card__name { font-size: 0.875rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; }
.review-card__source { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.review-summary {
  background: var(--navy); padding: 2.5rem; display: flex; flex-direction: column;
  justify-content: space-between; color: #fff; border-left: 4px solid var(--red-600);
}
.review-summary__text { font-size: 0.875rem; font-weight: 300; line-height: 1.75; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.1em; }
.review-summary__metric { margin-top: 2rem; }
.review-summary__val { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.review-summary__label { font-size: 10px; color: var(--red-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 0; background: #fff; position: relative; overflow: hidden; }
.cta-box {
  background: var(--navy); border-radius: 2px;
  padding: 3rem; position: relative; overflow: hidden;
  text-align: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.cta-box__glow-1 {
  position: absolute; top: 0; right: 0; width: 24rem; height: 24rem;
  background: rgba(220,38,38,0.1); border-radius: 50%; filter: blur(100px);
  transform: translateY(-50%) translateX(50%);
}
.cta-box__glow-2 {
  position: absolute; bottom: 0; left: 0; width: 24rem; height: 24rem;
  background: rgba(220,38,38,0.05); border-radius: 50%; filter: blur(100px);
  transform: translateY(50%) translateX(-50%);
}
.cta-box__content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; }
.cta-box__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2.5rem;
}
.cta-box__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); animation: pulse 2s infinite; }
.cta-box__badge-text { font-size: 9px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.2em; }
.cta-box__title {
  font-size: 2.25rem; font-weight: 500; color: #fff;
  letter-spacing: -0.05em; margin-bottom: 2rem; line-height: 1.2;
}
.cta-box__title .highlight { color: var(--red-500); font-style: italic; font-weight: 300; }
.cta-box__desc { font-size: 1.125rem; color: var(--gray-400); margin-bottom: 3rem; max-width: 36rem; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.75; }
.cta-box__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.cta-box__email {
  font-size: 0.75rem; font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 0.1em; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem; transition: border-color 0.3s;
}
.cta-box__email:hover { border-color: var(--red-500); }
.cta-box__social {
  margin-top: 5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2rem;
}
.cta-box__social a {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.cta-box__social a:hover { color: #fff; }
.cta-box__social a svg { width: 24px; height: 24px; transition: transform 0.3s; }
.cta-box__social a:hover svg { transform: scale(1.1); }
.cta-box__social-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; display: none;
}
.cta-box__phone { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.cta-box__phone:hover { color: var(--red-500); }
.cta-box__phone svg { color: var(--red-500); transition: transform 0.3s; }
.cta-box__phone:hover svg { transform: rotate(12deg); }
.cta-box__phone-num { font-size: 0.875rem; font-weight: 900; letter-spacing: 0.1em; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 6rem 0 3rem; color: #fff; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 5rem; text-align: center; }
.footer__col-logo { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer__col-logo img { width: 140px; height: auto; }
.footer__col-logo p {
  font-size: 0.6875rem; color: var(--gray-400); line-height: 1.75;
  font-weight: 300; font-style: italic; max-width: 240px;
}
.footer__col-logo .quote-author {
  display: block; margin-top: 0.5rem; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em; font-style: normal; color: var(--gray-500);
}
.footer__col h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--red-500); margin-bottom: 2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 1rem; }
.footer__col ul a {
  font-size: 10px; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.1em; transition: color 0.3s;
}
.footer__col ul a:hover { color: #fff; }
.footer__col p {
  font-size: 10px; color: var(--gray-400); line-height: 2;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.footer__col a.email-link {
  font-size: 9px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-bottom: 1px solid var(--red-500); padding-bottom: 0.25rem;
}
.footer__bottom {
  padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer__copy { font-size: 9px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500; }
.footer__credit { display: flex; align-items: center; gap: 1rem; }
.footer__credit-label { font-size: 8px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 300; }
.footer__credit a { display: flex; align-items: center; gap: 0.5rem; }
.footer__credit img { height: 16px; width: auto; opacity: 0.7; transition: opacity 0.3s; filter: brightness(0) invert(1); }
.footer__credit a:hover img { opacity: 1; }
.footer__credit-arrow { color: var(--red-500); opacity: 0; transition: all 0.3s; transform: translateX(-0.5rem); }
.footer__credit a:hover .footer__credit-arrow { opacity: 1; transform: translateX(0); }
.footer__credit-arrow svg { width: 14px; height: 14px; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
  pointer-events: none;
}
.wa-balloon {
  background: #fff; color: var(--navy); padding: 1rem; border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid var(--gray-100);
  max-width: 260px; transform-origin: bottom right;
  transform: scale(0); opacity: 0; transition: all 0.5s;
  pointer-events: auto; position: relative;
}
.wa-balloon.show { transform: scale(1); opacity: 1; }
.wa-balloon__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.wa-balloon__avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--wa-green); flex-shrink: 0;
}
.wa-balloon__status { display: flex; flex-direction: column; }
.wa-balloon__name { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.wa-balloon__online { display: flex; align-items: center; gap: 0.375rem; }
.wa-balloon__online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); animation: pulse 2s infinite; }
.wa-balloon__online-text { font-size: 10px; font-weight: 700; color: var(--wa-green); text-transform: uppercase; letter-spacing: 0.1em; }
.wa-balloon__text { font-size: 0.75rem; line-height: 1.75; font-weight: 500; color: var(--gray-600); }
.wa-balloon__close {
  position: absolute; top: 0.5rem; right: 0.5rem; color: var(--gray-400);
  transition: color 0.3s; cursor: pointer;
}
.wa-balloon__close:hover { color: var(--red-500); }
.wa-balloon__close svg { width: 16px; height: 16px; }
.wa-balloon__triangle {
  position: absolute; bottom: -8px; right: 20px;
  width: 16px; height: 16px; background: #fff;
  border-bottom: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100);
  transform: rotate(45deg);
}
.wa-btn {
  width: 3.5rem; height: 3.5rem; background: var(--wa-green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(37,211,102,0.4);
  transition: all 0.3s; pointer-events: auto;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 20px -10px rgba(37,211,102,0.8); }
.wa-btn svg { width: 32px; height: 32px; fill: currentColor; }

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 8rem 0 4rem; background: var(--gray-50); position: relative;
  border-bottom: 1px solid rgba(51,51,51,0.05);
}
@media (max-width: 767px) {
  .page-hero {
    background-position: right !important;
    background-blend-mode: multiply !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
  }
}
.page-hero__content { max-width: 48rem; }
.page-hero__title {
  font-size: 2.25rem; font-weight: 500; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1rem;
}
.page-hero__desc { font-size: 1.125rem; color: var(--gray-500); line-height: 1.75; }

/* Inner page content */
.page-content { padding: 4rem 0; }
.page-content section { margin-bottom: 4rem; }

/* FAQ Tabs */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem;
}
.faq-tab-btn {
  padding: 0.75rem 1.5rem; background: #fff; border: 1px solid rgba(0,0,0,0.1); 
  border-radius: 4px; font-weight: 600; font-size: 0.875rem; color: var(--navy); 
  cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-tab-btn:hover {
  background: var(--gray-50); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.faq-tab-btn.active {
  background: var(--red-600); color: #fff; border-color: var(--red-600); box-shadow: 0 4px 10px rgba(220,38,38,0.3);
}
.faq-tab-content {
  display: none;
}
.faq-tab-content.active {
  display: block; animation: faqFadeIn 0.4s ease forwards;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid rgba(51,51,51,0.08); border-radius: 2px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between;
  align-items: center; background: #fff; cursor: pointer;
  font-size: 1rem; font-weight: 500; color: var(--navy); text-align: left;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { width: 20px; height: 20px; color: var(--red-500); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
  background: var(--gray-50);
}
.faq-answer__inner { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--gray-500); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 500px; }

/* Contact Form */
.contact-form { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: 2px;
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; color: var(--navy);
  transition: border-color 0.3s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--red-500);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 2rem; background: var(--red-600); color: #fff;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; border: none; cursor: pointer;
  transition: all 0.3s; border-radius: 2px;
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }

/* Area detail cards for inner page */
.area-detail-card {
  background: #fff; border: 1px solid rgba(51,51,51,0.05); padding: 2.5rem;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: all 0.5s;
}
.area-detail-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.area-detail-card__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red-600);
}
.area-detail-card__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.area-detail-card__icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--red-100);
}
.area-detail-card__icon svg { width: 28px; height: 28px; }
.area-detail-card__title { font-size: 1.5rem; font-weight: 500; color: var(--navy); }
.area-detail-card__body { font-size: 0.875rem; color: var(--gray-500); line-height: 1.75; }
.area-detail-card__body ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.area-detail-card__body li { display: flex; align-items: flex-start; gap: 0.5rem; }
.area-detail-card__body li svg { color: var(--red-500); margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; }

/* Work with us page */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.benefit-card {
  background: #fff; border: 1px solid rgba(51,51,51,0.05);
  padding: 2rem; border-radius: 2px; text-align: center;
  transition: all 0.5s;
}
.benefit-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transform: translateY(-4px); }
.benefit-card__icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border: 1px solid var(--red-100);
}
.benefit-card__icon svg { width: 24px; height: 24px; }
.benefit-card__title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.benefit-card__desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.75; }

/* Contact info cards */
.contact-info { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
  background: #fff; border: 1px solid rgba(51,51,51,0.05);
  border-radius: 2px; transition: all 0.3s;
}
.contact-card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.contact-card__icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--red-100);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-card__value { font-size: 0.875rem; color: var(--navy); font-weight: 500; }

/* Map */
.map-container { width: 100%; height: 400px; border: 1px solid var(--gray-200); border-radius: 2px; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (min-width: 640px) {
  .cta-box__actions { flex-direction: row; }
  .btn-cta-final { width: auto; }
  .cta-box__social-label { display: block; }
  .socio__stat-divider { display: block; }
  .reviews__stars-text { font-size: 0.75rem; }
}

@media (min-width: 768px) {
  .site-nav__links { display: flex; }
  .site-nav__cta { display: block; }
  .site-nav__menu-btn { display: none; }
  .hero__title { font-size: 3.25rem; }
  .hero { min-height: 90vh; }
  .modules__grid { grid-template-columns: repeat(2, 1fr); }
  .module { border-bottom: none; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .diferencial { padding: 3rem; }
  .diferencial__body { flex-direction: row; gap: 4rem; align-items: center; }
  .diferencial__left { width: 33%; margin-bottom: 0; }
  .diferencial__right { width: 66%; border-left: 1px solid var(--gray-100); padding-left: 4rem; }
  .sobre__image { aspect-ratio: 3/4; }
  .sobre__float-years { display: block; }
  .sobre__float-metric { bottom: -2.5rem; right: -2.5rem; padding: 2.5rem; }
  .review-card { padding: 3rem; }
  .review-card__text { font-size: 1.5rem; margin-bottom: 2.5rem; }
  .reviews__grid { grid-template-columns: 2fr 1fr; }
  .reviews__header { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-box { padding: 6rem; }
  .cta-box__title { font-size: 3.75rem; }
  .cta-box__social { gap: 3.5rem; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
  .footer__col-logo { align-items: flex-start; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
  .page-hero__title { font-size: 3rem; }
  .contact-form { grid-template-columns: repeat(2, 1fr); }
  .contact-form .form-group--full { grid-column: 1 / -1; }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .socio__image-behind { transform: translateX(-1.5rem) translateY(1.5rem); }
  .socio__image-border { transform: translateX(1rem) translateY(-1rem); }
}

/* Desktop */
@media (min-width: 1024px) {
  .modules__grid { grid-template-columns: repeat(4, 1fr); }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
  .steps__line { display: block; }
  .step__dot { display: flex; }
  .carousel { grid-template-columns: repeat(2, 1fr); }
  .carousel__image { height: auto; border-bottom: none; border-right: 1px solid rgba(51,51,51,0.05); }
  .carousel__content { padding: 5rem; }
  .carousel__title { font-size: 3rem; }
  .sobre__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 6rem; }
  .section-title { font-size: 3rem; }
  .section-title--large { font-size: 3.75rem; }
  .contact-info { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .area-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero__visuals { display: block; }
  .socio__grid { flex-direction: row; gap: 6rem; }
  .socio__image-wrap { width: 35%; max-width: none; }
  .socio__text { width: 58.333%; }
  .socio__name { font-size: 3rem; }
}

/* Utility for area detail grid */
.area-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

/* ===== LEGACY SOBRE ===== */
.legacy {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
    overflow: hidden;
}
.legacy__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.legacy__image-wrapper {
    position: relative;
    width: 100%;
}
.legacy__image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.legacy__badge-top {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}
.legacy__badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 35, 51, 0.05);
    border-radius: 50%;
    padding: 10px;
}
.legacy__badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}
.legacy__badge-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
    max-width: 100px;
}
.legacy__badge-bottom {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}
.legacy__badge-bottom strong {
    font-size: 2rem;
    font-weight: 800;
}
.legacy__badge-bottom span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 80px;
    color: #aaa;
}

.legacy__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    position: relative;
}
.legacy__icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    color: var(--red-600);
    opacity: 0.1;
    z-index: 0;
}
.legacy__tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red-600);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.legacy__tag-line {
    width: 30px;
    height: 2px;
    background: var(--red-600);
}
.legacy__title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    background: linear-gradient(100deg, #333 30%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legacy__title-light {
    font-weight: 300;
    font-style: italic;
    color: #999;
}
.legacy__quote {
    font-style: italic;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}
.legacy__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.legacy__list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.legacy__list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
}
.legacy__list-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.legacy__list-text strong {
    color: #222;
}

@media (min-width: 1024px) {
    .legacy {
        padding: 8rem 2rem;
    }
    .legacy__inner {
        flex-direction: row;
        align-items: center;
        gap: 6rem;
    }
    .legacy__image-wrapper {
        flex: 1;
    }
    .legacy__content {
        flex: 1;
        padding-top: 0;
    }
    .legacy__title {
        font-size: 2.75rem;
    }
    .legacy__badge-top {
        left: -40px;
    }
    .legacy__badge-bottom {
        right: -40px;
    }
}


/* ===== NEWSLETTER ===== */
.newsletter {
    background: #f8f9fa;
    overflow: hidden;
}
.newsletter__inner {
    display: flex;
    flex-direction: column;
}
.newsletter__content {
    background: #a32a1d; /* Vermelho escuro similar ao da imagem */
    color: #fff;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}
.newsletter__decor {
    position: absolute;
    left: 1.5rem;
    top: 4.5rem;
    display: flex;
    flex-direction: column;
}
.newsletter__decor span {
    width: 14px;
    height: 14px;
    background: #c84638; /* Vermelho mais claro */
}
.newsletter__decor span:nth-child(2) {
    background: #64150d; /* Marrom escuro */
}
.newsletter__title {
    font-family: 'Playfair Display', serif; /* Fonte elegante com serifa */
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem; /* Dar espaço pro decor */
}
.newsletter__desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    margin-left: 1.5rem;
    max-width: 400px;
    color: #f1f1f1;
}
.newsletter__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    transition: opacity 0.3s;
}
.newsletter__cta:hover {
    opacity: 0.8;
}
.newsletter__cta-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.newsletter__cta:hover .newsletter__cta-icon {
    background: rgba(255,255,255,0.15);
}
.newsletter__cta-icon svg {
    width: 20px;
    height: 20px;
}
.newsletter__image-wrap {
    width: 100%;
    height: 350px;
}
.newsletter__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .newsletter {
        padding: 5rem 0;
        background: #fff;
    }
    .newsletter__inner {
        flex-direction: row;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }
    .newsletter__content {
        width: 55%;
        padding: 6rem 4rem 6rem 8rem; /* Muito padding e margem negativa para invadir imagem */
        margin-left: 5%;
        margin-right: -10%;
    }
    .newsletter__decor {
        left: 5rem;
        top: 6.5rem;
    }
    .newsletter__title, .newsletter__desc, .newsletter__cta {
        margin-left: 0;
    }
    .newsletter__title {
        font-size: 2.75rem;
    }
    .newsletter__desc {
        font-size: 1.125rem;
        max-width: 450px;
    }
    .newsletter__image-wrap {
        width: 60%;
        height: 600px;
    }
}


/* ===== CAREER CTA (Trabalhe Conosco) ===== */
.career-cta {
    background-color: var(--navy);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.career-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(220,38,38,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.career-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.career-cta__content {
    max-width: 600px;
}

.career-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.career-cta__desc {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.career-cta__btn-wrap {
    display: flex;
    align-items: center;
}

.career-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red-600);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.career-cta__btn:hover {
    background: var(--red-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

@media (min-width: 1024px) {
    .career-cta {
        padding: 6rem 2rem;
    }
    .career-cta__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .career-cta__title {
        font-size: 2.5rem;
    }
}



/* ===== HERO BUTTON ===== */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #4b5563; /* Texto cinza */
    padding: 0.75rem 1.75rem; /* Diminuiu o tamanho */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    border-radius: 4px;
    border: 1px solid #9ca3af; /* Borda cinza */
    box-shadow: none; /* Sem sombra */
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background: #f3f4f6; /* Fundo cinza bem claro ao passar o mouse */
    border-color: #6b7280;
    color: #374151;
}

/* Modificador: Botão Vermelho (ex: Trabalhe Conosco) */
.hero__btn--red {
    background: var(--red-600);
    border-color: var(--red-600);
    color: #ffffff;
}
.hero__btn--red:hover {
    background: var(--red-700);
    border-color: var(--red-700);
    color: #ffffff;
}



/* ===== ARTICLES SECTION ===== */
.articles {
    background-color: var(--gray-50);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.articles__header {
    margin-bottom: 3rem;
    text-align: left;
}

.articles__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.articles__grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    /* Hide scrollbar mas permite scroll suave */
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.articles__grid::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 calc(90vw - 2rem);
    background: #fff;
    border-radius: 0; /* Sem curvas */
    box-shadow: none; /* Minimalista */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #e5e7eb; /* Borda reta e fina */
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    border-color: #d1d5db;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Sombra luxuosa e sutil apenas no hover */
}

.article-card__img-wrap {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.article-card__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.article-card__desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.article-card__date {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

.article-card__btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--red-600);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.article-card__btn:hover {
    background: transparent;
    color: var(--red-700);
    border-bottom: 1px solid var(--red-700);
}

@media (min-width: 768px) {
    .article-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .articles {
        padding: 6rem 2rem;
    }
    .article-card {
        flex: 0 0 calc(50% - 1rem); /* Exatos 2 cards visíveis */
        flex-direction: column;
        height: auto;
    }
    .article-card__img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        flex-shrink: 0;
    }
    .article-card__content {
        width: 100%;
        padding: 2.5rem 2rem;
    }
    .article-card__title {
        font-size: 1.25rem;
    }
}

/* Navigational Header */
.articles__header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}
.articles__header-text {
    flex: 1;
}
.articles__nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.articles__nav-btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid #d1d5db;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #4b5563;
}
.articles__nav-btn:hover {
    background: var(--red-600);
    border-color: var(--red-600);
    color: #fff;
}

/* Articles Dots */
.articles__dots { display: flex; gap: 0.5rem; align-items: center; margin-top: 2.5rem; justify-content: flex-start; }
.articles__dot {
  height: 4px; border-radius: 9999px; transition: all 0.5s; border: none; padding: 0; cursor: pointer;
}
.articles__dot.active { width: 3rem; background: var(--red-600); }
.articles__dot:not(.active) { width: 1.5rem; background: #e5e7eb; }
.articles__dot:hover:not(.active) { background: #d1d5db; }


/* --- Quem Somos (Legacy) Light Theme --- */
.legacy {
    background-color: #f9fafb; /* Cinza claro quase branco */
    color: var(--gray-600);
    padding: 6rem 0; 
}
.legacy__title {
    color: var(--navy);
}
.legacy__title strong {
    color: var(--navy);
    font-weight: 800;
}
.legacy__quote {
    color: var(--gray-500);
}
.legacy__icon {
    color: var(--red-600);
}
.section-badge {
    color: var(--red-600);
}

/* ===== ASSISTENCIA (OVERLAP LAYOUT) ===== */
.assistencia {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(51,51,51,0.05);
}
.assistencia__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media (min-width: 1024px) {
    .assistencia__bg {
        width: 65%;
    }
}
.assistencia__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.assistencia__inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}
.assistencia__card {
    background: #fff;
    padding: 4rem;
    max-width: 550px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(51, 51, 51, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (max-width: 1023px) {
    .assistencia { padding: 0; background: #fff; }
    .assistencia__bg { position: relative; height: 350px; width: 100%; }
    .assistencia__card { 
        box-shadow: none; border: none; margin-top: -3rem; position: relative; 
        z-index: 3; padding: 2rem; max-width: 100%;
    }
}
.assistencia__title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.assistencia__title strong {
    font-weight: 800;
}
.assistencia__desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
    font-weight: 300;
}
.assistencia__card .btn-hero {
    margin-top: 1rem;
    align-self: flex-start;
}
\n
/* --- Custom Footer Background --- */
.site-footer, footer {
    background-color: #333333 !important;
}
\n
/* --- Tema Escuro para a Seção .sobre (#4f4d4d) --- */
.sobre {
    background-color: #333333 !important;
}
.sobre .section-label,
.sobre .section-title,
.sobre .sobre__text-title,
.sobre .sobre__quote,
.sobre .sobre__check p,
.sobre .sobre__cta-text {
    color: #ffffff !important;
}
.sobre .sobre__check p span.bold {
    color: #ffffff !important;
}
.sobre .sobre__decor {
    display: none !important;
}
.sobre .sobre__float-metric, .sobre .sobre__float-years {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.sobre .sobre__float-metric-val, .sobre .sobre__float-metric-label {
    color: #ffffff !important;
}
\n
/* --- Forced Dark Theme Update (#333333) --- */
.site-footer, footer {
    background-color: #333333 !important;
}
.sobre {
    background-color: #333333 !important;
}
\n\n\n
/* -- Force Card 20+ White Background -- */
.sobre .sobre__float-years {
    display: flex !important; 
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.sobre .sobre__float-years .sobre__float-years-num {
    color: var(--navy, #1e293b) !important;
}
.sobre .sobre__float-years .sobre__float-years-label {
    color: var(--gray-600, #4b5563) !important;
}

/* Garante que o de metricas (R$ 2B+) fique escondido pois ele pediu pra remover no passo anterior, ou restaurar, mas ele focou no de 20 anos */
.sobre .sobre__float-metric {
    display: none !important;
}

/* -- Ajuste de Tamanho do Título de Atuação -- */
#atuacao .section-title, #atuacao .section-title--large {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
}

/* --- Melhoria WhatsApp Chat Bubble --- */

.wa-balloon {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background: #ece5dd !important; 
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    overflow: visible !important;
    width: 250px !important;
    margin-bottom: 0 !important;
    border: none !important;
    padding: 0 !important;
}

.wa-balloon::after {
    content: "Digite sua mensagem...";
    display: block;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238696a0'%3E%3Cpath d='M1.101 21.757 23.8 12.028 1.101 2.3l.011 7.912 13.623 1.816-13.623 1.817-.011 7.912z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    color: #8696a0;
    padding: 10px 40px 10px 15px;
    border-radius: 20px;
    margin: 0 15px 15px 15px;
    font-size: 0.8rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    cursor: text;
}

.wa-float:hover .wa-balloon {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.wa-balloon__header {
    background-color: #075e54 !important; 
    color: #fff !important;
    padding: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border-radius: 12px 12px 0 0 !important;
}
.wa-balloon__avatar {
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    object-fit: cover !important;
}
.wa-balloon__name {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}
.wa-balloon__online-text {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.8rem !important;
}
.wa-balloon__online-dot {
    background: #25d366 !important;
}
.wa-balloon__text {
    padding: 12px !important;
    font-size: 0.85rem !important;
    color: #303030 !important;
    line-height: 1.4 !important;
    background: #ffffff !important; 
    position: relative !important;
    border-radius: 0 12px 12px 12px !important;
    margin: 12px 15px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}
.wa-balloon__text::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -10px !important;
    border-width: 0 10px 10px 0 !important;
    border-style: solid !important;
    border-color: transparent #ffffff transparent transparent !important;
}
.wa-balloon__triangle, .wa-balloon__close {
    display: none !important; 
}

/* Dropdown Areas de Atuacao */
.site-nav__links .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 5rem;
}
.site-nav__links .nav-dropdown:hover > a {
    color: var(--navy);
}
.site-nav__links .nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.site-nav__links .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.site-nav__links .nav-dropdown__menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #4b5563 !important;
    text-decoration: none;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s;
    text-transform: none !important;
    margin: 0 !important;
}
.site-nav__links .nav-dropdown__menu a:hover {
    background: #f9fafb;
    color: #dc2626 !important;
}
.site-nav__links .nav-dropdown__menu a.active {
    color: #dc2626 !important;
    background: #fef2f2;
}

@media (max-width: 767px) {
    .site-nav__cta {
        display: none !important;
    }
}

/* Bento Card Button */
.bento-card__link-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--red-600, #dc2626);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.3s;
}
.bento-card:hover .bento-card__link-btn {
    background-color: var(--red-700, #b91c1c);
}

/* Articles Mobile Nav */
@media (max-width: 767px) {
    .articles__nav--desktop { display: none !important; }
    .articles__bottom-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
    }
}
@media (min-width: 768px) {
    .articles__nav--mobile { display: none !important; }
    .articles__bottom-wrapper { display: block; }
}

/* CTA Box Mobile Tweak */
@media (max-width: 767px) {
    .cta-box {
        padding: 3rem 1rem !important; /* Reduces horizontal padding from 3rem to 1rem to prevent squeezing */
    }
    .cta-box__title {
        font-size: 2rem !important; /* Slightly smaller title on mobile to fit nicely */
    }
    .btn-wa--large {
        padding: 0.625rem 1rem;
        font-size: 0.7rem;
    }
}
