/* =========================================================
   style.css — Victor Bellotti Advocacia
   ========================================================= */

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-teal:       #1C7A8C;
  --color-teal-dark:  #155F6E;
  --color-teal-light: #2A9BB0;

  --color-navy-900:   #0F1A24;
  --color-navy-800:   #1A2332;
  --color-navy-600:   #3D4A5C;
  --color-slate:      #8A9AB0;

  --color-white:      #FFFFFF;
  --color-off-white:  #F4F6F8;
  --color-border:     #E2E8EF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);

  --container-wide:   1280px;
  --container-narrow: 800px;
  --section-padding:  96px 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--color-navy-800);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utility ───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-teal);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-slate);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-title::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-teal);
  margin: 0 auto 16px;
}
.text-center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy-800);
}

.btn-outline-teal {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn-outline-teal:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-navy-800);
  color: var(--color-white);
  border-color: var(--color-navy-800);
}
.btn-dark:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

/* ─── Animate on scroll ─────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  background: var(--color-off-white);
  border-radius: var(--radius);
  color: var(--color-navy-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy-600);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-navy-800);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  aria-label: "Menu";
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy-800);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
}

.mobile-menu.open {
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-navy-900);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu__drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-menu__drawer a:hover {
  color: var(--color-white);
  padding-left: 8px;
}

.mobile-menu__drawer .btn {
  margin-top: 16px;
  justify-content: center;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-navy-800);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,36,0.95) 0%, rgba(15,26,36,0.78) 60%, rgba(28,122,140,0.65) 100%);
}

/* Fallback geometric pattern when no image */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 60px
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before,
.hero__label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--color-teal-light);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  max-width: var(--container-narrow);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

/* Hero Cards */
.hero__cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(28,122,140,0.4);
}

.hero-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(28,122,140,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-teal-light);
}

.hero-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* =========================================================
   QUEM SOU
   ========================================================= */
.about {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-bg {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate);
  font-size: 14px;
}

.about__text p {
  font-size: 16px;
  color: var(--color-navy-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__text strong {
  color: var(--color-navy-800);
  font-weight: 600;
}

.about__values-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy-800);
  margin: 32px 0 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-navy-600);
}

.about__value-item i {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   ÁREAS DE ATUAÇÃO
   ========================================================= */
.areas {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.areas__header {
  margin-bottom: 56px;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.area-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.area-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(28,122,140,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.area-card__icon-wrap.icon-danger {
  background: rgba(220, 38, 38, 0.08);
  color: #DC2626;
}

.area-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 14px;
  line-height: 1.3;
}

.area-card__text {
  font-size: 15px;
  color: var(--color-navy-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.area-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.area-card__link:hover {
  color: var(--color-teal-dark);
  gap: 10px;
}

/* CTA Block */
.areas__cta {
  background: var(--color-navy-800);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}

.areas__cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.areas__cta p {
  font-size: 16px;
  color: var(--color-slate);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* =========================================================
   ARTIGOS
   ========================================================= */
.articles {
  padding: var(--section-padding);
  background: var(--color-white);
}

.articles__header {
  margin-bottom: 56px;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.article-card {
  border-top: 3px solid var(--color-teal);
  padding: 32px 0;
  transition: var(--transition);
}

.article-card:hover {
  box-shadow: none;
}

.article-card:hover .article-card__title {
  color: var(--color-teal);
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(28,122,140,0.10);
  color: var(--color-teal);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.article-card__date {
  font-size: 13px;
  color: var(--color-slate);
}

.article-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-800);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.article-card__excerpt {
  font-size: 15px;
  color: var(--color-navy-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.article-card__link:hover {
  gap: 10px;
}

.articles__footer {
  text-align: center;
}

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.location__header {
  margin-bottom: 56px;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}

.location__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.location__icon {
  width: 52px;
  height: 52px;
  background: rgba(28,122,140,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  margin-bottom: 24px;
}

.location__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 16px;
}

.location__address {
  font-style: normal;
  font-size: 16px;
  color: var(--color-navy-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.location__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  transition: var(--transition);
}

.location__maps-link:hover {
  color: var(--color-teal-dark);
  gap: 12px;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.location__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: var(--section-padding);
  background: var(--color-navy-800);
}

.faq__header {
  margin-bottom: 56px;
}

.faq__header .section-title {
  color: var(--color-white);
}

.faq__header .section-subtitle {
  color: var(--color-slate);
  margin: 0 auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}

.faq-item__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal-light);
  transition: transform var(--transition), background var(--transition);
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.8;
  padding-bottom: 24px;
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact {
  padding: var(--section-padding);
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact__form-section .section-label {
  margin-bottom: 8px;
}

.contact__subtitle {
  font-size: 16px;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy-800);
}

.form-label span {
  color: var(--color-teal);
}

.form-control {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-navy-800);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control::placeholder {
  color: var(--color-slate);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(28,122,140,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-slate);
  margin-top: 4px;
}

.form-footer i { color: var(--color-teal); }

/* Contact CTA Card */
.contact__cta-card {
  background: var(--color-navy-800);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: sticky;
  top: 96px;
}

.contact__cta-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact__cta-card p {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__cta-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 32px;
}

.contact__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

.contact__divider::before,
.contact__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.contact__email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-slate);
  transition: color var(--transition);
}

.contact__email-link:hover {
  color: var(--color-teal-light);
}

.contact__email-link i {
  color: var(--color-teal);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--color-navy-900);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img,
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer__brand-placeholder {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__social:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--color-teal-light);
  transform: translateX(4px);
}

.footer__legal-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__oab {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.12);
}

/* =========================================================
   FOCUS / ACCESSIBILITY
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =========================================================
   RESPONSIVE — TABLET ≤ 1024px
   ========================================================= */
@media (max-width: 1024px) {
  .hero__cards { grid-template-columns: repeat(2, 1fr); }

  .about__grid { gap: 48px; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__cta-card {
    position: static;
    padding: 40px 32px;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — MOBILE < 768px
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  /* Header */
  .header__nav,
  .header__actions .btn { display: none; }

  .header__hamburger { display: flex; }

  .mobile-menu { display: block; }

  /* Hero */
  .hero__content { padding: 100px 24px 40px; }
  .hero__title { font-size: 34px; }
  .hero__cards { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px 48px; }
  .hero-card { padding: 20px 16px; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-bg { display: none; }
  .about__image { aspect-ratio: 3/2; }
  .about__image-placeholder { aspect-ratio: 3/2; }

  /* Areas */
  .areas__grid { grid-template-columns: 1fr; }
  .areas__cta { padding: 40px 24px; }

  /* Articles */
  .articles__grid { grid-template-columns: 1fr; }

  /* Location */
  .location__grid { grid-template-columns: 1fr; }
  .location__map iframe { height: 280px; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Misc */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__cards { grid-template-columns: 1fr; }
  .hero-card__title, .hero-card__text { font-size: 13px; }
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-section {
  background: var(--color-navy-800);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media--image {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 36, 0.85) 0%,
    rgba(26, 35, 50, 0.75) 50%,
    rgba(28, 122, 140, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  color: white;
  max-width: 780px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-content p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-slide.active .hero-content h1 {
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-slide.active .hero-content p {
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-slide.active .hero-content .hero-buttons {
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

.hero-slide:not(.active) .hero-content h1,
.hero-slide:not(.active) .hero-content p,
.hero-slide:not(.active) .hero-content .hero-buttons {
  opacity: 0;
  animation: none;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
}

/* =========================================================
   SEÇÃO SOLUÇÕES
   ========================================================= */
.section-solucoes {
  background: var(--color-off-white);
  padding: 96px 24px;
}

.solucoes-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.solucoes-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.solucoes-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.solucoes-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--color-navy-800);
  margin-bottom: 16px;
  line-height: 1.2;
}

.solucoes-subtitle {
  font-size: 17px;
  color: var(--color-slate);
  line-height: 1.6;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .solucoes-grid { grid-template-columns: 1fr; }
}

.solucao-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solucao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-teal);
  transition: height 0.3s ease;
}

.solucao-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.solucao-card:hover::before {
  height: 100%;
}

.solucao-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(28, 122, 140, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.solucao-card-icon svg {
  width: 22px;
  height: 22px;
}

.solucao-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-navy-800);
  line-height: 1.3;
  margin: 0;
}

.solucao-card p {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.solucao-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  margin-top: 8px;
  transition: gap 0.2s;
}

.solucao-card:hover .solucao-card-cta {
  gap: 10px;
}

.solucao-card-cta svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   SEÇÃO ÉTICA E TRANSPARÊNCIA (HOME)
   ========================================================= */
.section-etica {
  background: var(--color-navy-800);
  padding: 96px 24px;
}

.etica-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .etica-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .etica-visual {
    min-width: 0;
    overflow: hidden;
  }
  .etica-pilar {
    min-width: 0;
    padding: 20px 16px;
  }
  .etica-pilar span {
    font-size: 15px;
  }
}

.etica-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.etica-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.etica-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 32px;
}

.etica-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 122, 140, 0.4);
  padding-bottom: 4px;
  transition: all 0.2s;
}

.etica-link:hover {
  gap: 12px;
  border-color: var(--color-teal);
}

.etica-link svg {
  width: 16px;
  height: 16px;
}

.etica-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.etica-pilar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.etica-pilar:hover {
  background: rgba(28, 122, 140, 0.12);
  border-color: rgba(28, 122, 140, 0.3);
}

.etica-pilar svg {
  width: 28px;
  height: 28px;
  color: var(--color-teal);
}

.etica-pilar span {
  font-family: var(--font-serif);
  font-size: 18px;
  color: white;
  font-weight: 500;
}

/* =========================================================
   PÁGINAS DE ARTIGOS
   ========================================================= */

/* ─── Page Hero ─────────────────────────────────────────── */
.page-hero {
  background: var(--color-navy-800);
  padding: 120px 0 56px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--color-teal-light); }
.page-hero__breadcrumb .sep { color: rgba(255,255,255,0.2); margin: 0 2px; }
.page-hero__breadcrumb .current { color: rgba(255,255,255,0.7); }

.page-hero__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(28,122,140,0.18);
  color: var(--color-teal-light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.page-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.7;
}

/* ─── Filter Bar ─────────────────────────────────────────── */
.filter-bar {
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-border);
}
.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  max-width: var(--container-wide);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy-600);
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}
.filter-pill:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}
.filter-pill.active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

/* ─── Article Listing Grid ───────────────────────────────── */
.article-listing {
  background: var(--color-off-white);
  padding: 64px 0;
}
.article-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.listing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.listing-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.listing-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.listing-card__badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(28,122,140,0.08);
  color: var(--color-teal);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.listing-card__date { font-size: 13px; color: var(--color-slate); }
.listing-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-800);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.listing-card:hover .listing-card__title { color: var(--color-teal-dark); }
.listing-card__excerpt {
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.listing-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}
.listing-card__link:hover { gap: 10px; }

/* ─── Article Page Layout ────────────────────────────────── */
.article-layout {
  background: var(--color-white);
  padding: 64px 0;
}
.article-layout__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ─── Article Content ────────────────────────────────────── */
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-navy-800);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-navy-800);
  margin: 32px 0 12px;
  line-height: 1.35;
}
.article-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-navy-600);
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol { margin: 0 0 20px 24px; }
.article-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-navy-600);
  margin-bottom: 8px;
}
.article-content strong { color: var(--color-navy-800); font-weight: 600; }
.article-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 40px 0;
}

/* ─── Article Sidebar ────────────────────────────────────── */
.article-sidebar__cta {
  background: var(--color-navy-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.article-sidebar__cta h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-sidebar__cta p {
  font-size: 14px;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 24px;
}
.article-sidebar__cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

/* ─── Back Link ──────────────────────────────────────────── */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate);
  margin-bottom: 48px;
  transition: var(--transition);
}
.article-back:hover { color: var(--color-teal); }
.article-back i { transition: transform var(--transition); }
.article-back:hover i { transform: translateX(-4px); }

/* ─── Related Articles ───────────────────────────────────── */
.related-articles {
  background: var(--color-off-white);
  padding: 64px 0;
}
.related-articles__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 32px;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ─── Coming Soon ────────────────────────────────────────── */
.coming-soon {
  background: var(--color-white);
  padding: 96px 0;
  text-align: center;
}
.coming-soon__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(28,122,140,0.08);
  color: var(--color-teal);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.coming-soon__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--color-navy-800);
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 16px;
}
.coming-soon__text {
  font-size: 17px;
  color: var(--color-slate);
  margin-bottom: 40px;
}

/* ─── Article pages — responsive ────────────────────────── */
@media (max-width: 1024px) {
  .article-layout__inner { grid-template-columns: 1fr 280px; gap: 40px; }
}
@media (max-width: 768px) {
  .article-listing-grid { grid-template-columns: 1fr; }
  .article-layout__inner { grid-template-columns: 1fr; }
  .article-sidebar__cta { position: static; }
  .related-articles__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 40px; }
  .page-hero__subtitle { font-size: 16px; }
  .article-content h2 { font-size: 22px; }
  .article-content h3 { font-size: 18px; }
  .article-content p, .article-content li { font-size: 16px; }
}

/* =========================================================
   REDESIGN — HEADER FIXO TRANSPARENTE + DROPDOWN
   ========================================================= */

/* Override: header agora é fixed para todas as páginas */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Home: header começa transparente sobre o hero */
.page-home .header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

/* Após rolar 60px, header fica sólido */
.header.scrolled {
  background: var(--color-navy-900) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

/* Nav links — brancos em todos os estados (fundo sempre escuro) */
.header__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
}

.header__nav a::after {
  background: var(--color-teal-light);
}

/* Hamburger bars — brancas */
.header__hamburger span {
  background: var(--color-white);
}

/* ── Dropdown ────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown__trigger svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 270px;
  background: var(--color-navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 6px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  transition: var(--transition);
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}

.nav-dropdown__menu a::after {
  display: none !important;
}

.nav-dropdown__menu a:hover {
  background: rgba(28, 122, 140, 0.18);
  color: var(--color-white);
  padding-left: 28px;
}

/* ── Mobile sub-links ────────────────────────────────────── */
.mobile-menu__sub {
  padding-left: 2rem !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
}

/* =========================================================
   HERO — CENTRALIZADO + LINHA + DOTS
   ========================================================= */

.hero-content {
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-weight: 700;
  text-align: center;
  max-width: 860px;
}

.hero-content p {
  font-weight: 300;
  text-align: center;
}

.hero-buttons {
  justify-content: center;
}

/* Dots de navegação */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--color-teal);
  transform: scale(1.45);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   SOLUÇÕES — GRID 3×2 MINIMAL
   ========================================================= */

/* Cabeçalho centralizado */
.solucoes-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

/* Grid 3 colunas */
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .solucoes-grid { grid-template-columns: 1fr; }
}

/* Card minimal: ícone + título + seta */
.solucao-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}

.solucao-card::before {
  display: none;
}

.solucao-card:hover {
  background: var(--color-navy-900);
  border-color: var(--color-navy-900);
  transform: none;
  box-shadow: none;
}

.solucao-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(28,122,140,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: background 0.25s ease;
}

.solucao-card:hover .solucao-card-icon {
  background: rgba(28,122,140,0.2);
}

.solucao-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy-800);
  line-height: 1.35;
  flex: 1;
  margin: 0;
  transition: color 0.25s ease;
}

.solucao-card:hover h3 {
  color: var(--color-white);
}

/* Ocultar parágrafo e CTA antigos (texto descritivo) */
.solucao-card p,
.solucao-card-cta {
  display: none;
}

/* Seta nova */
.solucao-card-arrow {
  color: var(--color-slate);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.solucao-card:hover .solucao-card-arrow {
  color: var(--color-teal-light);
  transform: translateX(4px);
}

/* =========================================================
   CTA CENTRAL
   ========================================================= */

.cta-central {
  background: var(--color-teal-dark);
  padding: 80px 0;
}

.cta-central__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-central__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-central__inner p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-central__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   TIPOGRAFIA — OVERRIDES GLOBAIS
   ========================================================= */

/* Subtítulos com peso 300 */
.section-subtitle,
.solucoes-subtitle {
  font-weight: 300;
}

/* Hero h1 bold + hero p weight 300 já aplicados acima */

/* Artigos — seção heading centralizado sem section-label */
.articles__header.text-center .section-title::before,
.faq__header.text-center .section-title::before,
.location__header.text-center .section-title::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-teal);
  margin: 0 auto 16px;
}

/* =========================================================
   PART 2 — LOGO FILTRO (header sempre escuro)
   ========================================================= */
.header__logo img {
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

/* =========================================================
   PART 3 — FOOTER LOGO + SOCIAL ICONS
   ========================================================= */
.footer__logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__social {
  color: rgba(255, 255, 255, 0.75);
}

.footer__social:hover {
  color: var(--color-teal);
  background: rgba(28, 122, 140, 0.15);
  border-color: rgba(28, 122, 140, 0.4);
}

/* =========================================================
   PART 4 — SOLUÇÕES BECKER-STYLE (ícone circular + nome uppercase)
   ========================================================= */

/* Override grid para 3×2 com mais espaçamento */
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

@media (max-width: 900px) {
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

@media (max-width: 560px) {
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

.solucao-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 18px;
  padding: 8px;
  transition: none;
}

.solucao-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(28, 122, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.solucao-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.solucao-item:hover .solucao-icon-wrap {
  background: var(--color-teal);
  color: var(--color-white);
}

.solucao-nome {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-navy-800);
  line-height: 1.4;
  transition: color 0.25s ease;
}

.solucao-item:hover .solucao-nome {
  color: var(--color-teal-dark);
}

/* =========================================================
   CTA — SOBREPOSIÇÃO (imagem + retângulo navy diagonal)
   ========================================================= */

.section-cta {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Imagem de fundo cobrindo toda a seção */
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy-800);
  z-index: 0;
}

/* Overlay escuro sobre a imagem */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 36, 0.65);
  z-index: 1;
}

/* Retângulo navy sobreposto vindo da direita */
.cta-box {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 58%;
  background: var(--color-navy-900);
  display: flex;
  align-items: center;
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cta-box-inner {
  padding: 64px 64px 64px 80px;
}

.cta-box-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta-box-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 440px;
}

.cta-box-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta-box {
    width: 100%;
    clip-path: none;
    margin-left: 0;
  }
  .cta-box-inner {
    padding: 48px 24px;
  }
}

/* btn-teal */
.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn-teal:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  color: var(--color-white);
}

/* =========================================================
   QUEM SOU — SPLIT COM TABS
   ========================================================= */

.section-quem-sou {
  display: flex;
  height: auto;
  min-height: 520px;
  position: relative;
}

/* Retângulo esquerdo: navy 58% */
.qs-left {
  flex: 0 0 58%;
  background: var(--color-navy-800);
  display: flex;
  align-items: center;
  padding: 80px 0 80px 80px;
  position: relative;
  overflow: hidden;
}

.qs-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-teal) 30%,
    var(--color-teal) 70%,
    transparent 100%
  );
  opacity: 0.6;
}

.qs-left::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(28, 122, 140, 0.3),
    transparent
  );
}

.qs-left-content {
  width: 100%;
  max-width: 100%;
  padding-right: 40px;
  margin: 0;
}

.qs-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.qs-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.qs-body strong {
  color: var(--color-white);
  font-weight: 600;
}

.qs-valores {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qs-valores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 28px;
  width: 100%;
}

.qs-valor-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
}

.qs-valor-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.qs-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.qs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.qs-stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
}
.qs-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  line-height: 1.4;
}
.qs-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  margin: 0 24px;
  flex-shrink: 0;
}

/* Retângulo direito: claro 42% */
.qs-right {
  flex: 0 0 42%;
  background: var(--color-off-white);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: unset;
  padding-bottom: 0;
}

/* Moldura branca com a foto — containing block: .section-quem-sou */
.qs-photo-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(58% - 40px);
  right: 0;
  z-index: 10;
  background: white;
  padding: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.qs-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Tabs — sobrepostas à foto na borda inferior */
.qs-tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  left: calc(58% - 40px);
  right: 0;
  margin-top: 0;
  z-index: 20;
}

/* Wrapper: ancora o painel flutuante */
.qs-tab-wrap {
  position: static;
  flex: 1;
}

/* Botão do tab */
.qs-tab {
  width: 100%;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-slate);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.qs-tab:hover {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

/* Painel flutuante — ancorado à .qs-tabs, não ao wrapper */
.qs-tab-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  width: auto;
  z-index: 100;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

/* Grid 2 colunas quando há 3 ou mais itens */
.qs-tab-panel:has(.qs-tab-item:nth-child(3)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* Mostrar painel ao hover no wrapper */
.qs-tab-wrap:hover .qs-tab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.qs-tab-wrap:hover .qs-tab {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

/* Mostrar painel via click (classe JS) */
.qs-tab-wrap.is-open .qs-tab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.qs-tab-wrap.is-open .qs-tab {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

/* Itens dentro do painel */
.qs-tab-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.qs-tab-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qs-tab-item:first-child {
  padding-top: 0;
}

.qs-tab-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.qs-tab-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 3px;
  letter-spacing: 0.1px;
}

.qs-tab-item p {
  font-size: 13px;
  color: var(--color-slate);
  line-height: 1.55;
  margin: 0;
}

/* Responsivo */
@media (max-width: 900px) {
  .section-quem-sou {
    flex-direction: column;
    min-height: unset;
  }
  .qs-left {
    flex: none;
    padding: 56px 24px;
  }
  .qs-left-content {
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
  }
  .qs-right {
    flex: none;
    overflow: visible;
  }
  .qs-photo-frame {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .qs-photo {
    height: 200px;
    transform: scale(1.25);
    transform-origin: center 30%;
  }
  .qs-photo-frame {
    overflow: hidden;
  }
  .qs-tabs {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: var(--color-white);
    backdrop-filter: none;
    padding: 0;
    overflow-x: visible;
  }
  .qs-tab-wrap {
    position: static;
    flex: 1;
    text-align: center;
  }
  .qs-tab {
    width: 100%;
    padding: 14px 4px;
    font-size: 10px;
    letter-spacing: 0.6px;
  }
  .qs-tab-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 0;
  }
  /* Desabilitar hover no mobile — só click funciona */
  .qs-tab-wrap:hover .qs-tab-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  /* Painel abaixo da barra de tabs — não cobre a foto */
  .qs-tab-panel {
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--color-border);
    border-top: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-6px);
    z-index: 200;
  }
  .qs-tab-panel:has(.qs-tab-item:nth-child(3)) {
    display: block;
  }
  .qs-tab-wrap:last-child .qs-tab-panel {
    border-radius: 0 0 12px 12px;
  }
  .qs-tab-wrap.is-open .qs-tab-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================================================
   FOOTER — SOCIAL ICONS (visibilidade garantida)
   ========================================================= */

.footer__social svg,
.footer__social [data-lucide] {
  color: rgba(255, 255, 255, 0.75);
  stroke: rgba(255, 255, 255, 0.75);
}

.footer__social:hover svg,
.footer__social:hover [data-lucide] {
  color: var(--color-teal);
  stroke: var(--color-teal);
}

.footer .social-icon--instagram,
.footer .social-links a[href*="instagram"] {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer .social-icon--instagram:hover,
.footer .social-links a[href*="instagram"]:hover {
  color: var(--color-teal);
  border-color: var(--color-teal);
}

/* ── Solução pages — artigos relacionados ────────────────────── */
.solucao-artigos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.solucao-artigo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.solucao-artigo-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.solucao-artigo-card__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy-800);
}

.solucao-artigo-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.solucao-artigo-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-teal);
}

.solucao-artigo-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy-800);
  line-height: 1.4;
  margin: 0;
  flex: 1;
  transition: color 0.2s;
}

.solucao-artigo-card:hover .solucao-artigo-card__title {
  color: var(--color-teal);
}

.solucao-artigo-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.solucao-artigo-card:hover .solucao-artigo-card__cta {
  gap: 8px;
}

@media (max-width: 640px) {
  .solucao-artigos-grid {
    grid-template-columns: 1fr;
  }
}
