/* ========================================
   ARTUR MAGALHÃES — LANDING PAGE v3
   Estrutura: LP
   Copy: arturmagalhaesadv.com.br
   ======================================== */

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --bg-cream: #F7F7F2;
   --bg-white: #FFFFFF;
   --bg-dark: #0D1B2A;
   --bg-dark-2: #132238;
   --bg-dark-3: #0a1520;
   --text-primary: #0D1B2A;
   --text-secondary: #3D4F63;
   --text-muted: #7A8899;
   --text-white: #FFFFFF;
   --gold: #C9A84C;
   --gold-light: #E0C76E;
   --gold-hover: #B8973D;
   --gold-subtle: rgba(201, 168, 76, 0.08);
   --gold-glow: rgba(201, 168, 76, 0.25);
   --green: #16a34a;
   --green-hover: #15803d;
   --green-dark: #064e3b;
   --green-dark-hover: #0a5c46;
   --red: #E05555;
   --border: #E8E8E3;
   --border-dark: rgba(255, 255, 255, 0.08);
   --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   --r-sm: 12px;
   --r-md: 20px;
   --r-lg: 28px;
   --r-xl: 36px;
   --r-pill: 100px;
   --sh-sm: 0 2px 8px rgba(0, 0, 0, .04);
   --sh-md: 0 4px 24px rgba(0, 0, 0, .06);
   --sh-lg: 0 12px 48px rgba(0, 0, 0, .08);
   --sh-xl: 0 20px 64px rgba(0, 0, 0, .12);
   --container: 1140px;
   --py: 112px;
}

html {
   scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
}

body {
   font-family: var(--font);
   font-size: 16px;
   line-height: 1.6;
   color: var(--text-secondary);
   background: var(--bg-cream);
   overflow-x: hidden;
}

a {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%;
   display: block;
}

ul,
ol {
   list-style: none;
}

strong {
   color: var(--text-primary);
   font-weight: 600;
}

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

/* === UTILITIES === */
.text-gold {
   color: var(--gold);
}

.section-tag {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   color: var(--gold);
   background: var(--gold-subtle);
   padding: 6px 16px;
   border-radius: var(--r-pill);
   margin-bottom: 20px;
   letter-spacing: .1em;
   text-transform: uppercase;
   border: 1px solid rgba(201, 168, 76, .15);
}

.section-tag--light {
   background: rgba(201, 168, 76, .12);
   color: var(--gold-light);
   border-color: rgba(201, 168, 76, .2);
}

.section-title {
   font-size: clamp(26px, 3.8vw, 42px);
   font-weight: 800;
   color: var(--text-primary);
   line-height: 1.15;
   margin-bottom: 16px;
   letter-spacing: -.03em;
}

.section-header {
   text-align: center;
   max-width: 680px;
   margin: 0 auto 72px;
}

.section-desc {
   font-size: 16px;
   color: var(--text-muted);
   line-height: 1.75;
}

/* === BUTTONS === */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-family: var(--font);
   font-weight: 600;
   font-size: 15px;
   padding: 14px 28px;
   border: none;
   cursor: pointer;
   transition: all .3s cubic-bezier(.4, 0, .2, 1);
}


.btn--pill {
   border-radius: var(--r-pill);
}

.btn--lg {
   padding: 16px 36px;
   font-size: 16px;
}

.btn--xl {
   padding: 20px 48px;
   font-size: 17px;
}

.btn--cta {
   background: var(--green);
   color: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--cta:hover {
   background: var(--green-hover);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--cta-gold {
   background: var(--green);
   color: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--cta-gold:hover {
   background: var(--green-hover);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--dark-green {
   background: var(--green-dark);
   color: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--dark-green:hover {
   background: var(--green-dark-hover);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
   background: rgba(255, 255, 255, .08);
   color: rgba(255, 255, 255, .7);
   border: 1.5px solid rgba(255, 255, 255, .15);
}

.btn--ghost:hover {
   background: rgba(255, 255, 255, .14);
   border-color: rgba(255, 255, 255, .3);
   color: #fff;
   transform: translateY(-2px);
}

.btn--outline-light {
   background: transparent;
   color: var(--text-white);
   border: 1.5px solid rgba(255, 255, 255, .22);
   padding: 14px 28px;
}

.btn--outline-light:hover {
   border-color: var(--gold);
   color: var(--gold);
   transform: translateY(-2px);
}

.btn--outline-dark {
   background: transparent;
   color: var(--text-primary);
   border: 1.5px solid var(--border);
   padding: 14px 28px;
}

.btn--outline-dark:hover {
   border-color: var(--gold);
   color: var(--gold);
   background: rgba(0, 0, 0, .03);
   transform: translateY(-2px);
}

.btn__icon {
   width: 18px;
   height: 18px;
   flex-shrink: 0;
}

@keyframes cta-vibrate-once {

   0%,
   100% {
      transform: translate3d(0, 0, 0);
   }

   25% {
      transform: translate3d(-1px, 0, 0) rotate(1deg);
   }

   50% {
      transform: translate3d(1px, 0, 0) rotate(-1deg);
   }

   75% {
      transform: translate3d(-1px, 0, 0) rotate(1deg);
   }
}

#cta-hero-primary {
   animation: cta-vibrate-once 1s ease-in-out 0.8s;
   transform-origin: center;
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
   -webkit-font-smoothing: antialiased;
   transform: translateZ(0);
}

#cta-hero-primary:hover {
   animation: none;
   transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   padding: 24px 0;
   transition: all .35s;
}

.nav--scrolled {
   background: rgba(13, 27, 42, .93);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   padding: 12px 0;
   border-bottom: 1px solid var(--border-dark);
}

.nav__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 12px;
}

.nav__links {
   display: flex;
   gap: 24px;
   align-items: center;
}

.nav__link {
   color: rgba(255, 255, 255, 0.85);
   font-size: 14px;
   font-weight: 500;
   transition: color 0.3s ease;
   text-decoration: none;
}

.nav__link:hover {
   color: var(--gold);
}

@media (max-width: 768px) {
   .nav__inner {
      justify-content: flex-start;
   }
   .nav__links {
      display: none;
   }
}

.nav__logo {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--text-white);
}

.nav__brand-img {
   height: 42px;
   width: auto;
   object-fit: contain;
}

.nav__cta {
   font-size: 13px;
   padding: 9px 20px;
}

/* ============================================================
   HERO — layout (serif title + media card)
   ============================================================ */

/* Background */
.hero {
   position: relative;
   background: #0b1623;
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding: clamp(130px, 18vh, 160px) 0 clamp(20px, 4vh, 40px);
   overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 35, 0.78);
  z-index: 1;
}

.hero__bg-grain {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 2;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .07) 0%, transparent 65%);
  z-index: 3;
}

/* Grid */
.hero__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

/* ── LEFT COLUMN ── */
.hero__left {
  display: flex;
  flex-direction: column;
}

/* When hero__left is the only child (no photo column), center it */
.hero__left:only-child {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero__left:only-child .hero__subtitle {
  max-width: 580px;
}

.hero__left:only-child .hero__disclaimer {
  max-width: 100%;
}

/* Custom Text Logo (CSS Art) */
.custom-brand {
   display: flex;
   align-items: center;
   gap: 14px;
   user-select: none;
}

.custom-brand__img {
   height: 32px;
   width: auto;
   object-fit: contain;
   margin-right: 4px;
}

.custom-brand__divider {
   width: 1px;
   height: 26px;
   background: rgba(255, 255, 255, 0.15);
}

.custom-brand__text {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   line-height: 1.25;
}

.custom-brand__name {
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   font-weight: 300;
   letter-spacing: 0.22em;
   color: rgba(255, 255, 255, 0.9);
   text-transform: uppercase;
}

.custom-brand__sub {
   font-family: 'Inter', sans-serif;
   font-size: 9px;
   font-weight: 200;
   letter-spacing: 0.05em;
   color: rgba(255, 255, 255, 0.5);
}

/* Eyebrow: gold line + firm name */
.hero__eyebrow {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 24px;
}

.hero__eyebrow-line {
   display: block;
   width: 32px;
   height: 1px;
   background: var(--gold);
   opacity: 0.7;
   flex-shrink: 0;
}

.hero__eyebrow-firm {
   font-size: 11px;
   font-weight: 700;
   color: rgba(255, 255, 255, .45);
   letter-spacing: .14em;
   text-transform: uppercase;
   /* Prevent long eyebrow texts from overflowing on mobile */
   overflow-wrap: break-word;
   word-break: break-word;
   line-height: 1.4;
}

/* Category badge */
.hero__category {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   color: var(--gold);
   background: rgba(201, 168, 76, .1);
   border: 1px solid rgba(201, 168, 76, .2);
   padding: 6px 16px;
   border-radius: var(--r-pill);
   margin-bottom: 20px;
   letter-spacing: .1em;
   text-transform: uppercase;
   align-self: flex-start;
}

/* Serif headline */
.hero__title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(30px, min(4vw, 6vh), 56px);
   font-weight: 500;
   color: var(--text-white);
   line-height: 1.12;
   margin-bottom: clamp(12px, 2.5vh, 20px);
   letter-spacing: .01em;
}

.hero__title em {
   font-style: italic;
   font-weight: 400;
   color: var(--gold);
}

.hero__subtitle {
   font-size: clamp(14px, 1.5vw, 16px);
   color: rgba(255, 255, 255, .85);
   line-height: 1.7;
   margin-bottom: clamp(16px, 3vh, 24px);
   max-width: 480px;
}

/* "Analise seu caso..." note (like "Assista ao vídeo ao lado") */
.hero__video-note {
   display: none;
}

.hero__actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-bottom: clamp(16px, 3vh, 24px);
}

.hero__disclaimer {
   font-size: 11px;
   color: rgba(255, 255, 255, .2);
   line-height: 1.65;
   max-width: 440px;
}

/* Gold primary CTA */
.btn--cta-gold {
   background: var(--gold);
   color: var(--bg-dark);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   font-weight: 700;
}

.btn--cta-gold:hover {
   background: var(--gold-light);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--whatsapp-article {
   background: #064e3b;
   color: #ffffff !important;
   font-weight: 700;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   border-radius: var(--r-pill);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 16px 32px;
   transition: all 0.3s ease;
   text-decoration: none !important;
}

.btn--whatsapp-article:hover {
   background: #0a5c46;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
   color: #ffffff !important;
}

.btn--whatsapp-article svg {
   width: 22px;
   height: 22px;
}

.article-cta {
   margin-top: 60px;
   padding: 48px 32px;
   background: var(--bg-white);
   border-radius: 20px;
   text-align: center;
   color: var(--text-secondary);
   border: 1px solid var(--border);
   box-shadow: var(--sh-sm);
}

.article-cta h3 {
   color: var(--text-primary) !important;
   margin-top: 0;
   font-size: 1.85rem;
   margin-bottom: 16px;
   font-weight: 800;
   line-height: 1.2;
}

.article-cta p {
   color: var(--text-secondary);
   font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto 32px;
}




/* Scroll hint */


.hero__scroll-hint {
   position: absolute;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   color: rgba(255, 255, 255, .18);
   font-size: 11px;
   letter-spacing: .06em;
   animation: bounce-hint 2.5s ease-in-out infinite;
}

.hero__scroll-hint svg {
   width: 16px;
   height: 16px;
}

@keyframes bounce-hint {

   0%,
   100% {
      transform: translateX(-50%) translateY(0);
   }

   50% {
      transform: translateX(-50%) translateY(6px);
   }
}

/* ============================================================
   RECUSA — Negativas Comuns
   ============================================================ */
.recusa {
   padding: var(--py) 0;
   background: var(--bg-white);
}

.recusa__header {
   text-align: center;
   max-width: 720px;
   margin: 0 auto 60px;
}

/* Intro layout */
.recusa__intro {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   text-align: left;
   margin-bottom: 64px;
}

.recusa__intro-accent {
   display: block;
   width: 40px;
   height: 3px;
   background: var(--gold);
   border-radius: 2px;
   margin-bottom: 16px;
}

.recusa__intro-title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(32px, 4vw, 52px);
   font-weight: 600;
   color: var(--text-primary);
   line-height: 1.1;
   letter-spacing: .01em;
   margin: 0 0 16px 0;
}

.recusa__intro-desc {
   font-size: 17px;
   color: var(--text-secondary);
   line-height: 1.85;
   margin: 0;
   max-width: 720px;
}

.recusa__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-bottom: 40px;
}

.recusa__card {
   background: var(--bg-cream);
   border: 1px solid var(--border);
   border-radius: var(--r-xl);
   padding: 36px 28px;
   transition: all .4s cubic-bezier(.4, 0, .2, 1);
   display: flex;
   flex-direction: column;
}

.recusa__card:hover {
   border-color: rgba(201, 168, 76, .3);
   box-shadow: var(--sh-lg);
   transform: translateY(-4px);
}

.recusa__card-icon {
   width: 52px;
   height: 52px;
   background: var(--bg-dark);
   border-radius: var(--r-sm);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold);
   margin-bottom: 20px;
   transition: all .3s;
}

.recusa__card:hover .recusa__card-icon {
   background: var(--gold);
   color: var(--bg-dark);
}

.recusa__card-icon svg {
   width: 24px;
   height: 24px;
}

.recusa__card-title {
   font-size: 17px;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 12px;
   min-height: 56px;
   line-height: 1.4;
}

.recusa__card-list {
   list-style: none;
   margin: 0 0 14px;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.recusa__card-list li {
   font-size: 13px;
   font-weight: 600;
   color: var(--gold);
   letter-spacing: 0.02em;
   padding-left: 14px;
   position: relative;
}

.recusa__card-list li::before {
   content: '—';
   position: absolute;
   left: 0;
   color: var(--gold);
   opacity: 0.6;
}

.recusa__card-desc {
   font-size: 14px;
   color: var(--text-muted);
   line-height: 1.7;
   flex-grow: 1;
}

.recusa__cta-wrapper {
   text-align: center;
   margin-top: 48px;
   margin-bottom: 24px;
}

.recusa__disclaimer {
   text-align: center;
   font-size: 12px;
   color: var(--text-muted);
   font-style: italic;
}

/* ============================================================
   ATUAÇÃO — insurance types
   ============================================================ */
.atuacao {
   padding: var(--py) 0;
   background: var(--bg-cream);
}

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

.atuacao__card {
   background: var(--bg-white);
   border: 1px solid var(--border);
   border-radius: var(--r-xl);
   padding: 36px 32px;
   transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.atuacao__card:hover {
   border-color: transparent;
   box-shadow: var(--sh-lg);
   transform: translateY(-6px);
}

.atuacao__icon {
   width: 52px;
   height: 52px;
   background: var(--bg-dark);
   border-radius: var(--r-sm);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold);
   margin-bottom: 20px;
   transition: all .3s;
}

.atuacao__card:hover .atuacao__icon {
   background: var(--gold);
   color: var(--bg-dark);
}

.atuacao__icon svg {
   width: 24px;
   height: 24px;
}

.atuacao__card-title {
   font-size: 20px;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 10px;
}

.atuacao__card-desc {
   font-size: 15px;
   color: var(--text-muted);
   line-height: 1.7;
}

.atuacao__cta-wrapper {
   text-align: center;
   margin-top: 56px;
}

.atuacao__cta-note {
   font-size: 15px;
   color: var(--text-muted);
   margin-bottom: 24px;
}

/* ============================================================
   TÁTICAS — dark section, split layout
   ============================================================ */
.taticas {
   padding: 72px 0 64px;
   background: var(--bg-white);
   overflow: hidden;
   position: relative;
}

.taticas::before {
   display: none;
}

.taticas__header {
   margin-bottom: 56px;
   text-align: left;
}

.taticas__title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(32px, 4vw, 48px);
   font-weight: 500;
   color: var(--text-primary);
   line-height: 1.1;
   margin-bottom: 16px;
   letter-spacing: .01em;
   margin-top: 0;
}

.taticas__desc {
   font-size: 17px;
   color: var(--text-secondary);
   line-height: 1.7;
   max-width: 600px;
   margin-top: 0;
}

.taticas__timeline {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px;
   position: relative;
   max-width: 900px;
   margin: 0 auto 56px;
   text-align: center;
}

/* Connecting line */
.taticas__timeline::before {
   content: '';
   position: absolute;
   top: 19px;
   left: 16%;
   right: 16%;
   height: 1px;
   background: var(--border);
   z-index: 0;
}

.taticas__step {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.text-blue {
   color: #1C4975;
}

.taticas__step-marker {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: var(--bg-white);
   border: 1px solid #1C4975;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   font-weight: 700;
   color: #1C4975;
   margin-bottom: 20px;
   box-shadow: 0 0 0 6px var(--bg-white);
}

.taticas__step-title {
   font-size: 20px;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 12px;
}

.taticas__step-desc {
   font-size: 15px;
   color: var(--text-muted);
   line-height: 1.6;
   max-width: 260px;
   margin: 0;
}

.taticas__cta-wrapper {
   text-align: center;
   margin-top: 16px;
}

/* ============================================================
   ETAPAS — process steps (light)
   ============================================================ */
.etapas {
   padding: 96px 0;
   background: var(--bg-cream);
}

.etapas__list {
   display: flex;
   flex-direction: column;
   gap: 32px;
   max-width: 680px;
   margin: 0 auto;
}

.etapas__item {
   display: flex;
   align-items: flex-start;
   gap: 24px;
}

.etapas__num {
   font-size: 16px;
   font-weight: 700;
   color: var(--gold);
   border-bottom: 2px solid var(--gold);
   padding-bottom: 4px;
   flex-shrink: 0;
   margin-top: 4px;
   letter-spacing: .05em;
}

.etapas__title {
   font-size: 20px;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 8px;
}

.etapas__desc {
   font-size: 16px;
   color: var(--text-secondary);
   line-height: 1.65;
   margin: 0;
}

.etapas__cta {
   text-align: center;
   margin-top: 56px;
}

/* ============================================================
   SOBRE — photo + bio + table (dark)
   ============================================================ */
.sobre {
   padding: var(--py) 0;
   background: var(--bg-dark);
   color: var(--text-white);
   overflow: hidden;
}

.sobre__grid {
   display: grid;
   grid-template-columns: .5fr 1.5fr;
   gap: clamp(40px, 6vw, 80px);
   align-items: center;
}

.sobre__photo-wrapper {
   position: relative;
}

.sobre__photo-frame {
   border-radius: var(--r-xl);
   overflow: hidden;
   border: 2px solid rgba(201, 168, 76, .18);
   box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
   aspect-ratio: 3/4;
}

.sobre__photo {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top center;
}

.sobre__content {
   position: relative;
   padding: 0 clamp(20px, 4vw, 60px);
   text-align: left;
}

.sobre__content::before {
   content: '';
   position: absolute;
   left: 0;
   top: 5%;
   bottom: 5%;
   width: 1px;
   background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.sobre__content::after {
   content: '';
   position: absolute;
   left: -2px;
   top: 4%;
   width: 5px;
   height: 5px;
   background: var(--gold);
   transform: rotate(45deg);
   opacity: 0.8;
}

.sobre__title {
   font-size: clamp(24px, 3vw, 28px);
   font-weight: 300;
   color: var(--text-white);
   margin-bottom: 24px;
   letter-spacing: .15em;
   text-transform: uppercase;
}

.sobre__text {
   font-size: 15px;
   color: rgba(255, 255, 255, .55);
   line-height: 1.8;
   margin-bottom: 16px;
   text-align: justify;
}

/* Professional info */
.sobre__table {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px 16px;
   margin: 32px 0;
}

.sobre__table-row {
   display: flex;
   flex-direction: column;
   gap: 4px;
   align-items: center;
}

.sobre__table-label {
   font-size: 11px;
   color: rgba(255, 255, 255, .35);
   font-weight: 600;
   letter-spacing: .08em;
   text-transform: uppercase;
}

.sobre__table-value {
   font-size: 14px;
   color: rgba(255, 255, 255, .85);
   font-weight: 500;
}

/* Valores */
.sobre__valores {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
   margin: 24px 0 36px;
}

.sobre__valor {
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--r-pill);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 12px 16px;
   transition: all .3s;
}

.sobre__valor:hover {
   border-color: rgba(201, 168, 76, .3);
   background: rgba(201, 168, 76, .04);
   transform: translateY(-2px);
}

.sobre__valor-title {
   font-size: 11px;
   font-weight: 700;
   color: var(--gold);
   letter-spacing: .12em;
   text-transform: uppercase;
   margin: 0;
}

.sobre__cta-wrapper {
   display: flex;
   justify-content: center;
   margin-top: 32px;
   width: 100%;
}




/* ============================================================
   FAQ
   ============================================================ */
.faq {
   padding: var(--py) 0;
   background: var(--bg-white);
}

.faq__list {
   max-width: 800px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.faq__item {
   background: var(--bg-cream);
   border: 1px solid var(--border);
   border-radius: var(--r-lg);
   overflow: hidden;
   transition: all .3s;
}

.faq__item[open] {
   border-color: rgba(201, 168, 76, .25);
   box-shadow: var(--sh-md);
}

.faq__question {
   padding: 22px 28px;
   font-size: 15px;
   font-weight: 600;
   color: var(--text-primary);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   list-style: none;
   transition: color .3s;
}

.faq__question::-webkit-details-marker {
   display: none;
}

.faq__question::after {
   content: '+';
   font-size: 22px;
   font-weight: 300;
   color: var(--gold);
   flex-shrink: 0;
   transition: transform .3s;
}

.faq__item[open] .faq__question::after {
   content: '−';
}

.faq__question:hover {
   color: var(--gold);
}

.faq__answer {
   padding: 0 28px 24px;
   font-size: 14px;
   color: var(--text-muted);
   line-height: 1.8;
}

.faq__answer ol {
   padding-left: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   list-style: decimal;
}

.faq__answer p {
   margin-bottom: 8px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
   background: var(--bg-dark-3);
   padding: 64px 0 0;
   border-top: 1px solid rgba(255, 255, 255, .05);
}

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

.footer__logo {
   display: block;
   margin-bottom: 24px;
   text-decoration: none;
}

.footer__tagline {
   font-size: 13px;
   color: rgba(255, 255, 255, .35);
   line-height: 1.7;
   margin-bottom: 20px;
   max-width: 300px;
}

.footer__social {
   display: flex;
   gap: 8px;
}

.footer__social-link {
   width: 38px;
   height: 38px;
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, .35);
   transition: all .3s;
}

.footer__social-link:hover {
   border-color: var(--gold);
   color: var(--gold);
}

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

.footer__heading {
   font-size: 12px;
   font-weight: 700;
   color: var(--gold);
   text-transform: uppercase;
   letter-spacing: .1em;
   margin-bottom: 18px;
}

.footer__link {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: rgba(255, 255, 255, .4);
   margin-bottom: 10px;
   transition: color .3s;
   text-decoration: none;
}

.footer__link:hover {
   color: rgba(255, 255, 255, .8);
}

.footer__link svg {
   width: 14px;
   height: 14px;
   flex-shrink: 0;
}

.footer__info {
   font-size: 13px;
   color: rgba(255, 255, 255, .35);
   margin-bottom: 8px;
   line-height: 1.5;
}

.footer__legal {
   padding: 24px 0;
   border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.footer__legal p {
   font-size: 11px;
   color: rgba(255, 255, 255, .18);
   line-height: 1.7;
}

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

.footer__bottom p {
   font-size: 12px;
   color: rgba(255, 255, 255, .2);
}

.footer__bottom-links {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   color: rgba(255, 255, 255, .2);
}

.footer__bottom-links a {
   transition: color .3s;
}

.footer__bottom-links a:hover {
   color: rgba(255, 255, 255, .5);
}

.footer__bottom-links span {
   opacity: .4;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
   position: fixed;
   bottom: 24px;
   right: 24px;
   background: var(--green);
   color: #fff;
   text-decoration: none;
   border-radius: var(--r-pill);
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 10px 16px 10px 12px;
   box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
   z-index: 90;
   transition: all .4s cubic-bezier(.4, 0, .2, 1);
   opacity: 0;
   pointer-events: none;
   transform: translateY(20px) scale(0.9);
}

.whatsapp-float--visible {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
   transform: scale(1.05);
   box-shadow: 0 6px 32px rgba(37, 211, 102, .55);
}

.whatsapp-float svg {
   width: 22px;
   height: 22px;
   flex-shrink: 0;
}

.whatsapp-float__text {
   font-family: 'Inter', sans-serif;
   font-size: 13px;
   font-weight: 600;
   white-space: nowrap;
   letter-spacing: 0.02em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal--visible {
   opacity: 1;
   transform: translateY(0);
}

.reveal--d1 {
   transition-delay: 80ms;
}

.reveal--d2 {
   transition-delay: 160ms;
}

.reveal--d3 {
   transition-delay: 240ms;
}

.reveal--d4 {
   transition-delay: 320ms;
}

.reveal--d5 {
   transition-delay: 400ms;
}

.reveal--d6 {
   transition-delay: 480ms;
}

/* Subtle card icon pulse */
@keyframes icon-float {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-4px);
   }
}

.recusa__card:hover .recusa__card-icon {
   animation: icon-float 1.8s ease-in-out infinite;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs-wrapper {
   background: var(--bg-dark);
   padding: 72px 0 0;
}

.breadcrumbs__list {
   display: flex;
   align-items: center;
   gap: 8px;
   list-style: none;
   padding: 12px 0;
   margin: 0;
   font-size: 13px;
}

.breadcrumbs__list li {
   display: flex;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, .35);
}

.breadcrumbs__list li a {
   color: rgba(255, 255, 255, .5);
   text-decoration: none;
   transition: color .3s;
}

.breadcrumbs__list li a:hover {
   color: var(--gold);
}

.breadcrumbs__list li + li::before {
   content: '›';
   color: rgba(255, 255, 255, .25);
   font-size: 16px;
}

.breadcrumbs__list li[aria-current="page"] {
   color: rgba(255, 255, 255, .7);
}

/* ============================================================
   BLOG LISTING
   ============================================================ */
.blog-header {
   background: var(--bg-dark);
   padding: 32px 0 64px;
   color: var(--text-white);
}

.blog-grid-section {
   background: var(--bg-cream);
   padding: 64px 0 96px;
}

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

.blog-card {
   background: var(--bg-white);
   border: 1px solid var(--border);
   border-radius: var(--r-xl);
   overflow: hidden;
   transition: all .3s;
   text-decoration: none;
   color: inherit;
   display: flex;
   flex-direction: column;
   position: relative;
}

a.blog-card:hover {
   border-color: rgba(201, 168, 76, .3);
   box-shadow: var(--sh-lg);
   transform: translateY(-4px);
}

.blog-card--coming-soon {
   opacity: .55;
   pointer-events: none;
}

.blog-card__badge {
   position: absolute;
   top: 16px;
   left: 16px;
   background: var(--gold);
   color: var(--bg-dark);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .06em;
   text-transform: uppercase;
   padding: 4px 12px;
   border-radius: var(--r-pill);
}

.blog-card__content {
   padding: 48px 28px 28px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   flex: 1;
}

.blog-card__date {
   font-size: 12px;
   font-weight: 600;
   color: var(--gold);
   letter-spacing: .06em;
   text-transform: uppercase;
}

.blog-card__title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 22px;
   font-weight: 600;
   color: var(--text-primary);
   line-height: 1.3;
   margin: 0;
}

.blog-card__excerpt {
   font-size: 14px;
   color: var(--text-muted);
   line-height: 1.7;
   flex: 1;
}

.blog-card__cta {
   font-size: 14px;
   font-weight: 600;
   color: var(--gold);
   display: flex;
   align-items: center;
   gap: 6px;
   margin-top: 8px;
}

.blog-card__cta--muted {
   color: var(--text-muted);
}

/* Blog Card Image (thumbnail nos cards de prévia) */
.blog-card__image {
   width: 100%;
   height: 180px;
   object-fit: cover;
   display: block;
}

/* Article Header Image (hero no topo do artigo) */
.article-header__image {
   width: 100%;
   max-width: 900px;
   height: 320px;
   object-fit: cover;
   border-radius: var(--r-xl);
   margin: 32px auto 0;
   display: block;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
   .blog-card__image {
      height: 140px;
   }
   .article-header__image {
      height: 220px;
      border-radius: var(--r-lg);
   }
}

.blog-preview .section-header {
   text-align: left;
   margin-left: 0;
}

/* Blog Carousel */
.blog-carousel-wrapper {
   position: relative;
   margin-bottom: 56px;
   display: block;
   width: 100%;
}

.blog-carousel-wrapper::after {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   bottom: 24px;
   width: 80px;
   background: linear-gradient(to right, transparent, var(--bg-cream));
   pointer-events: none;
   z-index: 5;
   transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
   .blog-carousel-wrapper::after {
      display: none;
   }
}

.blog-carousel-wrapper.is-at-end::after {
   opacity: 0;
}

.blog-carousel-track {
   display: flex;
   gap: 24px;
   overflow-x: auto;
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
   padding-bottom: 24px;
   margin-bottom: -24px;
   -ms-overflow-style: none;
   scrollbar-width: none;
}

.blog-carousel-track::-webkit-scrollbar {
   display: none;
}

.blog-carousel-track .blog-card {
   scroll-snap-align: start;
   flex: 0 0 calc(100% - 40px);
   max-width: 380px;
}

@media (min-width: 768px) {
   .blog-carousel-track .blog-card {
      flex: 0 0 calc(50% - 12px);
   }
}

@media (min-width: 1024px) {
   .blog-carousel-track .blog-card {
      flex: 0 0 calc(33.333% - 16px);
   }
}

.blog-carousel-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 10;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: var(--bg-white);
   border: 1px solid var(--border);
   color: var(--text-primary);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 8px 24px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.blog-carousel-btn:hover:not(.is-disabled) {
   background: var(--gold);
   color: var(--bg-dark);
   border-color: var(--gold);
   transform: translateY(-50%) scale(1.05);
}

.blog-carousel-btn.is-disabled {
   opacity: 0.3;
   cursor: default;
   pointer-events: none;
}

.blog-carousel-btn svg {
   width: 20px;
   height: 20px;
}

.blog-carousel-btn--prev {
   left: -24px;
}

.blog-carousel-btn--next {
   right: -24px;
}

@media (max-width: 1024px) {
   .blog-carousel-btn--prev { left: -12px; }
   .blog-carousel-btn--next { right: -12px; }
}

@media (max-width: 767px) {
   .blog-carousel-btn {
      display: none;
   }
   .blog-carousel-track {
      padding-left: 24px;
      padding-right: 24px;
      margin-left: -24px;
      margin-right: -24px;
   }
}

.blog-cta-wrapper {
   text-align: center;
}

.blog-cta-text {
   font-size: 16px;
   color: var(--text-secondary);
   margin-bottom: 24px;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article {
   background: var(--bg-white);
   padding: 0 0 96px;
}

.article__container {
   max-width: 760px;
   margin: 0 auto;
}

.article__header {
   padding: 48px 0 40px;
   border-bottom: 1px solid var(--border);
   margin-bottom: 40px;
}

.article__title {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(28px, 5vw, 42px);
   font-weight: 600;
   color: var(--text-primary);
   line-height: 1.15;
   margin: 16px 0 20px;
}

.article__meta {
   display: flex;
   align-items: center;
   gap: 16px;
   font-size: 14px;
   color: var(--text-muted);
   flex-wrap: wrap;
}

.article__author strong {
   color: var(--text-primary);
}

.article__date {
   color: var(--text-muted);
}

/* Table of Contents */
.article__toc {
   background: var(--bg-cream);
   border: 1px solid var(--border);
   border-radius: var(--r-lg);
   padding: 24px 28px;
   margin-bottom: 48px;
}

.article__toc-title {
   font-size: 14px;
   font-weight: 700;
   color: var(--text-primary);
   text-transform: uppercase;
   letter-spacing: .06em;
   margin: 0 0 16px;
}

.article__toc-list {
   padding-left: 20px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin: 0;
}

.article__toc-list a {
   font-size: 15px;
   color: var(--text-secondary);
   text-decoration: none;
   transition: color .3s;
}

.article__toc-list a:hover {
   color: var(--gold);
}

/* Article body */
.article__body h2 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: clamp(22px, 3.5vw, 30px);
   font-weight: 600;
   color: var(--text-primary);
   margin: 48px 0 20px;
   padding-top: 24px;
   border-top: 1px solid var(--border);
}

.article__body h2:first-child {
   border-top: none;
   padding-top: 0;
}

.article__body h3 {
   font-size: 18px;
   font-weight: 700;
   color: var(--text-primary);
   margin: 28px 0 12px;
}

.article__body p {
   font-size: 16px;
   color: var(--text-secondary);
   line-height: 1.8;
   margin: 0 0 16px;
}

.article__body ul,
.article__body ol {
   padding-left: 24px;
   margin: 0 0 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.article__body li {
   font-size: 16px;
   color: var(--text-secondary);
   line-height: 1.7;
}

.article__body a {
   color: var(--gold);
   text-decoration: underline;
   text-underline-offset: 3px;
}

.article__body a:hover {
   color: #b8942f;
}

/* Article FAQ reuses existing FAQ styles */
.article__faq {
   margin-top: 48px;
}

.article__faq .faq__item {
   background: var(--bg-cream);
   border: 1px solid var(--border);
   border-radius: var(--r-lg);
   overflow: hidden;
   margin-bottom: 10px;
}

/* CTA box */
.article__cta-box {
   background: var(--bg-dark);
   border-radius: var(--r-xl);
   padding: 40px;
   text-align: center;
   margin-top: 56px;
}

.article__cta-box h3 {
   font-family: 'Cormorant Garamond', Georgia, serif;
   font-size: 28px;
   font-weight: 600;
   color: var(--text-white);
   margin: 0 0 12px;
}

.article__cta-box p {
   font-size: 15px;
   color: rgba(255, 255, 255, .6);
   margin: 0 0 24px;
}

/* ============================================================
   BLOG PREVIEW (HOME)
   ============================================================ */
.blog-preview {
   background: var(--bg-cream);
   padding: var(--py) 0;
   overflow: hidden;
}

.blog-grid--preview {
   margin-bottom: 0;
}


/* ============================================================
   RESPONSIVE — Mobile-First
   Breakpoints: 1024px | 768px | 600px | 480px | 380px
   ============================================================ */

/* 1024px — Tablet landscape */
@media (max-width: 1024px) {
   :root { --py: 80px; }
   .section-header { margin-bottom: 48px; }
   .hero { min-height: 100svh; padding: 110px 0 60px; justify-content: center; }
   .hero__wrapper { grid-template-columns: 1fr; gap: 40px; }
   .hero__scroll-hint { display: none; }
   .recusa__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
   .atuacao__grid { grid-template-columns: repeat(2, 1fr); }
   .taticas__header { text-align: center; }
   .taticas__desc { margin: 0 auto; }
   .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
   .sobre__content { padding-left: 0; padding-right: 0; }
   .sobre__content::before, .sobre__content::after { display: none; }
   .sobre__photo-frame { max-width: 320px; aspect-ratio: 4/5; margin: 0 auto; }
   .sobre__table { max-width: 480px; margin-left: auto; margin-right: auto; }
   .sobre__cta-wrapper { justify-content: center; }
   .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
   .footer__brand { grid-column: 1 / -1; }
   .blog-grid { grid-template-columns: 1fr; }
}

/* 768px — Tablet portrait / large phones */
@media (max-width: 768px) {
   :root { --py: 64px; }
   .nav { padding: 16px 0; }
   .nav__cta { display: none; }
   .hero { min-height: 100svh; padding: 96px 0 48px; justify-content: center; }
   .hero__title { font-size: clamp(28px, 7vw, 42px); }
   .hero__subtitle { font-size: 15px; max-width: 100%; }
   .hero__actions { flex-direction: column; align-items: stretch; }
   .hero__actions .btn { justify-content: center; width: 100%; }

   .recusa__grid { grid-template-columns: 1fr; gap: 16px; }
   .recusa__intro-desc { font-size: 15px; }
   .atuacao__grid { grid-template-columns: 1fr; gap: 16px; }
   .atuacao__card { padding: 28px 24px; }
   .taticas__timeline { grid-template-columns: 1fr; gap: 28px; max-width: 480px; text-align: left; margin-left: 0; }
   .taticas__timeline::before { display: none; }
   .taticas__step { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 20px; row-gap: 8px; text-align: left; align-items: start; }
   .taticas__step-marker { grid-column: 1; grid-row: 1 / 3; margin-bottom: 0; }
   .taticas__step-title { grid-column: 2; grid-row: 1; margin-bottom: 0; }
   .taticas__step-desc { grid-column: 2; grid-row: 2; max-width: 100%; margin: 0; }
   .etapas__item { gap: 16px; }
   .etapas__title { font-size: 18px; }
   .sobre__title { text-align: center; }
   .sobre__text { text-align: justify; }
   .sobre__table { grid-template-columns: 1fr 1fr; }
   .sobre__valores { grid-template-columns: 1fr; }
   .faq__question { padding: 18px 20px; font-size: 14px; }
   .faq__answer { padding: 0 20px 20px; }
   .footer__grid { grid-template-columns: 1fr; gap: 32px; }
   .footer__bottom { flex-direction: column; text-align: center; }
   .footer__bottom-links { justify-content: center; }
   .section-title { font-size: clamp(22px, 5.5vw, 32px); }
   .section-header { margin-bottom: 40px; }
   .recusa__intro-title { font-size: clamp(26px, 6vw, 40px); }
   .taticas__title { font-size: clamp(26px, 6vw, 40px); }
   .btn--lg { padding: 14px 28px; font-size: 15px; }
   .btn--xl { padding: 16px 32px; font-size: 16px; }
   /* Full-width section CTAs on mobile — prevents long labels from overflowing */
   .recusa__cta-wrapper .btn,
   .taticas__cta-wrapper .btn,
   .etapas__cta .btn,
   .atuacao__cta-wrapper .btn,
   .blog-cta-wrapper .btn { width: 100% !important; justify-content: center; }
   .atuacao__cta-note { font-size: 14px; text-align: center; }
}

/* 600px — Intermediate phones */
@media (max-width: 600px) {
   .whatsapp-float { bottom: 16px; right: 16px; padding: 10px 14px 10px 12px; }
   .taticas__timeline { margin-left: 0; margin-right: 0; }
}

/* 480px — Small phones */
@media (max-width: 480px) {
   :root { --py: 52px; }
   .container { padding: 0 16px; }
   .hero { min-height: 100svh; padding: 88px 0 40px; justify-content: center; }
   .hero__title { font-size: clamp(26px, 8vw, 36px); letter-spacing: 0; }
   .hero__eyebrow-firm { font-size: 10px; }
   .hero__media-card { max-width: clamp(200px, 70vw, 260px); }
   .recusa__card { padding: 24px 18px; }
   .hero__title { font-size: 28px !important; line-height: 1.2 !important; }
   .hero__subtitle { font-size: 14px !important; }
   .blog-card__title { font-size: 19px !important; }
   .blog-card__content { padding: 32px 20px 20px !important; }
   .recusa__card-title { min-height: unset; font-size: 16px; }
   .atuacao__card { padding: 24px 18px; }
   .atuacao__card-title { font-size: 17px; }
   .etapas__list { gap: 24px; }
   .etapas__item { gap: 14px; }
   .etapas__title { font-size: 17px; }
   .etapas__desc { font-size: 14px; }
   .sobre__table { grid-template-columns: 1fr; gap: 0; }
   .sobre__table-row { flex-direction: row; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
   .sobre__table-row:last-child { border-bottom: none; }
   .faq__question { padding: 16px 18px; font-size: 13px; }
   .faq__answer { padding: 0 18px 18px; font-size: 13px; }
   .section-tag { font-size: 10px; }
   .btn { font-size: 14px; }
   .btn--lg { padding: 14px 24px; font-size: 14px; }
   .footer { padding: 48px 0 0; }
   .footer__tagline { max-width: 100%; }
   .whatsapp-float__text { display: none; }
   .whatsapp-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
   .blog-carousel-track {
      padding-left: 16px;
      padding-right: 16px;
      margin-left: -16px;
      margin-right: -16px;
   }
}

/* 380px — Extra small (iPhone SE, older Androids) */
@media (max-width: 380px) {
   .hero__title { font-size: 24px; }
   .hero__subtitle { font-size: 14px; }
   .recusa__intro-title, .taticas__title { font-size: 24px; }
   .section-title { font-size: 22px; }
   .btn--lg { padding: 13px 20px; font-size: 13px; }
   .custom-brand__name { font-size: 11px; letter-spacing: 0.15em; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner__content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-white);
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 13px;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .cookie-banner p {
    font-size: 14px;
  }
  .cookie-banner__actions {
    width: auto;
    flex-shrink: 0;
  }
  .btn--sm {
    width: auto;
  }
}

/* ============================================================
   MELHORIAS DE LEGIBILIDADE (ARTIGOS E BLOG)
   ============================================================ */
.article-content p, 
.article-content li,
.article__body p,
.article__body li {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #1A2634 !important; /* Maior contraste e nitidez */
    text-align: justify !important;
}

.blog-card__excerpt {
    font-size: 15px !important;
    color: #1A2634 !important;
    line-height: 1.65 !important;
    text-align: justify !important;
}

@media (max-width: 768px) {
    .article-content p, 
    .article-content li,
    .article__body p,
    .article__body li {
        font-size: 16px !important; 
        line-height: 1.7 !important;
        text-align: justify !important;
    }
    
    .article-content h2,
    .article__body h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }
}
