/* ==========================================================================
   RB Assessoria - CSS Design System (Consolidated V12)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variáveis globais
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Premium Teal & Gold Accent Identity */
  --primary-color: #0B2F33;         /* Deep elegant dark teal */
  --primary-light: #174A43;         /* Secondary deep teal */
  --primary-rgb: 11, 47, 51;
  
  --secondary-color: #344141;       /* Graphite grey text */
  --secondary-light: #536260;
  
  --accent-color: #17B765;          /* Main green accent */
  --accent-hover: #0F8F52;
  --accent-rgb: 23, 183, 101;
  
  --gold-color: #D9AD4E;            /* Warm premium gold */
  --gold-soft: #F1CE75;             /* Light gold */
  
  --bg-white: #FFFDF7;              /* Premium off-white/cream background */
  --bg-light: #F7F3EA;              /* Warm grey/sand background */
  --bg-card: #FFFFFF;
  --border-color: rgba(25, 63, 58, 0.14);
  
  --text-dark: #112524;            /* Dark teal-grey for headers */
  --text-muted: #65716D;
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 88px;            /* Standard V10 desktop header height */
  --border-radius-sm: 10px;
  --border-radius-md: 14px;
  --border-radius-lg: 22px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 8px 18px rgba(10, 31, 32, 0.08);
  --shadow-md: 0 18px 36px rgba(10, 31, 32, 0.1);
  --shadow-lg: 0 28px 60px rgba(10, 31, 32, 0.18);
  --shadow-card-hover: 0 24px 48px rgba(8, 31, 32, 0.14);
}

/* --------------------------------------------------------------------------
   2. Reset/base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--secondary-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Utility Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Scroll Animation classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. Tipografia
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.tag-badge {
  display: inline-block;
  background: rgba(214, 169, 71, 0.14);
  color: #856523;
  border: 1px solid rgba(214, 169, 71, 0.25);
  font-weight: 600;
  font-size: 0.813rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   4. Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.938rem;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.063rem;
}

.btn-whatsapp,
.btn-secondary-wa,
.wa-float-btn {
  background: linear-gradient(135deg, #18B869 0%, #0E8F54 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(18, 151, 88, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover,
.btn-secondary-wa:hover {
  background: linear-gradient(135deg, #23C877 0%, #0B7F4A 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 151, 88, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  min-height: 48px;
  font-weight: 800;
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: #CBD5E1;
  transform: translateY(-2px);
}

.icon-whatsapp {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-arrow {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hero-cta,
.btn-hero-secondary {
  min-height: 58px;
  padding: 1rem 1.55rem;
  font-size: 1rem;
  font-weight: 800;
}

.btn-hero-secondary {
  color: #FFFFFF;
  background: rgba(255, 253, 247, 0.075);
  border: 1px solid rgba(255, 253, 247, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-hero-secondary:hover {
  background: rgba(255, 253, 247, 0.13);
  border-color: rgba(255, 253, 247, 0.9);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  padding: 0.7rem 1rem;
}

.main-header::before {
  content: '';
  position: absolute;
  inset: 0.58rem 1rem;
  background: linear-gradient(90deg, rgba(4, 18, 22, 0.86), rgba(9, 31, 33, 0.62));
  border: 1px solid rgba(241, 206, 117, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 76px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.main-header.scrolled::before {
  background: rgba(5, 23, 27, 0.93);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: clamp(236px, 24vw, 306px);
  height: auto;
  display: block;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.main-header.scrolled .logo-img {
  width: clamp(214px, 21vw, 278px);
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: clamp(0.85rem, 1.55vw, 1.65rem);
}

.nav-item {
  font-weight: 600;
  font-size: 0.91rem;
  color: rgba(255, 253, 247, 0.86);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-color);
  transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
  color: #FFFFFF;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-item.active::after {
  background-color: var(--accent-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. Hero desktop
   -------------------------------------------------------------------------- */
.hero-section.hero-cinematic {
  min-height: 100svh;
  padding: 8.5rem 0 7rem;
  background-image: url('assets/hero_cinematic_v10.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 15, 18, 0.58) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-cinematic .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 82% 34%, rgba(217, 173, 78, 0.11), transparent 25%),
    linear-gradient(90deg, rgba(3, 14, 17, 0.96) 0%, rgba(5, 23, 26, 0.9) 31%, rgba(7, 31, 35, 0.54) 52%, rgba(7, 31, 35, 0.08) 74%, rgba(7, 31, 35, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--container-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 615px) 1fr;
  align-items: center;
}

.hero-text-col {
  max-width: 615px;
  padding-top: 1rem;
  text-align: left;
}

.hero-badge-row {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(100%, 620px);
  margin-bottom: 1.35rem;
  padding: 0.56rem 0.9rem 0.62rem;
  border: 1px solid rgba(241, 206, 117, 0.34);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217, 173, 78, 0.16), rgba(11, 47, 51, 0.48));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-audience-badge {
  max-width: 100%;
  color: #F7DA8D;
  font-size: clamp(0.86rem, 1.18vw, 1.03rem);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-audience-badge span,
.hero-audience-secondary span {
  display: inline;
}

.hero-audience-badge span:not(:last-child)::after,
.hero-audience-secondary span:not(:last-child)::after {
  content: ' • ';
}

.hero-audience-secondary {
  color: #F7DA8D;
  font-size: clamp(0.86rem, 1.18vw, 1.03rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 0.24rem 0 0;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-cinematic .hero-title {
  color: #FFFFFF;
  font-size: clamp(3rem, 5.8vw, 5.85rem);
  line-height: 0.98;
  max-width: 650px;
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.31);
}

.hero-accent {
  color: #9FD36C;
}

.hero-cinematic .hero-subheadline {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.35vw, 2.35rem);
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.hero-cinematic .hero-subheadline .hero-accent {
  color: var(--gold-soft);
}

.hero-cinematic .hero-subtitle {
  color: rgba(255, 253, 247, 0.86);
  max-width: 580px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.hero-trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

.hero-trust-signal svg {
  color: var(--gold-soft);
}

.hero-trust-bar {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  width: min(100% - 3rem, var(--container-width));
  z-index: 3;
  border-top: 1px solid rgba(255, 253, 247, 0.14);
  padding-top: 1.15rem;
}

.hero-trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 253, 247, 0.88);
  min-width: 0;
}

.trust-bar-item svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0.55rem;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(214, 169, 71, 0.42);
  background: rgba(7, 31, 35, 0.44);
}

.trust-bar-item strong,
.trust-bar-item span {
  display: block;
}

.trust-bar-item strong {
  color: #FFFFFF;
  font-size: 0.92rem;
}

.trust-bar-item span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   7. Hero mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-section.hero-cinematic {
    display: block;
    min-height: auto;
    padding: calc(var(--header-height) + 0.35rem) 0 2.25rem;
    background:
      radial-gradient(circle at 72% 14%, rgba(217, 173, 78, 0.14), transparent 34%),
      linear-gradient(180deg, #071E24 0%, #08252A 42%, #06191E 100%);
  }

  .hero-section.hero-cinematic::before {
    content: '';
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: clamp(268px, 78vw, 360px);
    margin: 0 0 -1.25rem;
    border: 0;
    border-radius: 0;
    background-image:
      linear-gradient(180deg, rgba(7, 30, 36, 0) 0%, rgba(7, 30, 36, 0) 66%, rgba(7, 30, 36, 0.62) 100%),
      url('assets/hero_cinematic_v10.png');
    background-size: cover;
    background-position: 92% center;
    box-shadow: inset 0 -48px 50px rgba(6, 25, 30, 0.68);
    filter: saturate(1.05) brightness(1.08) contrast(1.02);
  }

  .hero-section.hero-cinematic::after,
  .hero-cinematic .hero-overlay {
    display: none;
  }

  .hero-section.hero-cinematic::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    display: block;
    height: 74px;
    background: linear-gradient(180deg, rgba(6, 25, 30, 0) 0%, rgba(6, 25, 30, 0.72) 54%, #06191E 100%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 3;
    width: min(100% - 1.5rem, 430px);
    margin: 0 auto;
    padding: 0.45rem 0 0;
    background: transparent;
    display: block;
  }

  .hero-text-col {
    text-align: left;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-badge-row {
    position: absolute;
    top: calc((clamp(268px, 78vw, 360px) * -1) + 0.95rem);
    left: 0.2rem;
    width: min(48%, 190px);
    max-width: 190px;
    min-height: clamp(188px, 50vw, 246px);
    margin: 0;
    padding: 0.72rem 0.68rem;
    border-radius: 0 16px 16px 0;
    justify-content: center;
    background:
      linear-gradient(90deg, rgba(4, 18, 22, 0.9) 0%, rgba(11, 47, 51, 0.68) 76%, rgba(11, 47, 51, 0.24) 100%);
    border-color: rgba(241, 206, 117, 0.28);
    border-left: 0;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: 14px 0 32px rgba(0, 0, 0, 0.16), inset 1px 0 0 rgba(255, 255, 255, 0.06);
    display: flex;
  }

  .hero-audience-badge,
  .hero-audience-secondary {
    display: contents;
    font-size: clamp(0.78rem, 2.95vw, 0.98rem);
    line-height: 1.15;
    letter-spacing: 0;
  }

  .hero-audience-badge span,
  .hero-audience-secondary span {
    display: block;
    color: #F7DA8D;
    font-size: clamp(0.78rem, 2.95vw, 0.98rem);
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  }

  .hero-audience-badge span:not(:last-child)::after,
  .hero-audience-secondary span:not(:last-child)::after {
    content: '';
  }

  .hero-audience-badge span + span,
  .hero-audience-secondary span + span,
  .hero-audience-secondary span:first-child {
    margin-top: 0.34rem;
  }

  .hero-cinematic .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.05rem, 9.2vw, 2.72rem);
    line-height: 1.05;
    margin-bottom: 0.68rem;
    overflow-wrap: break-word;
  }

  .hero-cinematic .hero-subheadline {
    font-size: clamp(1.16rem, 4.9vw, 1.44rem);
    line-height: 1.16;
    margin-bottom: 0.68rem;
  }

  .hero-cinematic .hero-subtitle {
    font-size: clamp(0.86rem, 3.45vw, 0.96rem);
    line-height: 1.48;
    margin-bottom: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    margin-bottom: 0.7rem;
  }

  .btn-hero-cta,
  .btn-hero-secondary {
    width: 100%;
    min-height: 48px;
    padding: 0.78rem 0.95rem;
    font-size: 0.94rem;
    border-radius: 12px;
  }

  .hero-trust-signal {
    justify-content: flex-start;
    font-size: 0.82rem;
    margin-top: 0;
    margin-bottom: 0.2rem;
  }

  .hero-trust-bar {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-section.hero-cinematic {
    background-position: 76% center;
  }
  
  .hero-section.hero-cinematic::before {
    height: clamp(252px, 76vw, 326px);
    background-position: 92% center;
  }

  .hero-inner {
    width: min(100% - 1.25rem, 400px);
  }
  
  .hero-badge-row {
    top: calc((clamp(252px, 76vw, 326px) * -1) + 0.88rem);
    width: min(50%, 184px);
    min-height: clamp(176px, 50vw, 232px);
  }
}

@media (max-width: 390px) {
  .hero-section.hero-cinematic {
    padding-top: calc(var(--header-height) + 0.28rem);
    background-position: 78% center;
  }
  
  .hero-section.hero-cinematic::before {
    width: 100%;
    height: clamp(238px, 75vw, 294px);
    margin-bottom: -1.1rem;
    border-radius: 0;
    background-position: 93% center;
  }

  .hero-inner {
    width: min(100% - 1.25rem, 390px);
  }

  .hero-badge-row {
    top: calc((clamp(238px, 75vw, 294px) * -1) + 0.78rem);
    width: min(51%, 178px);
    min-height: clamp(168px, 49vw, 214px);
    padding: 0.62rem 0.58rem;
  }
  
  .hero-cinematic .hero-title {
    font-size: clamp(1.86rem, 8.3vw, 2.2rem);
  }
}

@media (max-width: 360px) {
  .hero-section.hero-cinematic::before {
    height: 232px;
    margin-bottom: -1rem;
    background-position: 94% center;
  }
  
  .hero-inner {
    width: min(100% - 1rem, 340px);
  }
  
  .hero-badge-row {
    top: -222px;
    width: min(52%, 166px);
    min-height: 182px;
    padding: 0.56rem 0.5rem;
  }

  .hero-audience-badge span,
  .hero-audience-secondary span {
    font-size: 0.72rem;
  }
  
  .hero-cinematic .hero-title {
    font-size: 1.82rem;
  }
}

/* --------------------------------------------------------------------------
   8. Seções/cards
   -------------------------------------------------------------------------- */
.section {
  padding: 4.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(25, 63, 58, 0.09);
}

.section-alt {
  background: linear-gradient(180deg, #F8F4EA 0%, #FFFDF7 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0;
  color: var(--text-dark);
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2-equal {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-5 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.grid-5 .card {
  flex: 1 1 280px;
  max-width: 350px;
}

.align-items-center {
  align-items: center;
}

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #FFFDF7 100%);
  border: 1px solid rgba(25, 63, 58, 0.13);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 24px rgba(8, 31, 32, 0.045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.card::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(217, 173, 78, 0.7), rgba(23, 183, 101, 0.45));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-hover:hover::before {
  opacity: 1;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(25, 63, 58, 0.13);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 47, 51, 0.07), rgba(217, 173, 78, 0.1));
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.card-hover:hover .card-icon-box {
  background: rgba(214, 169, 71, 0.16);
  color: #8A6824;
}

.card-icon {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.875rem;
  color: var(--secondary-color);
  line-height: 1.5;
}

/* Secondary CTA Blocks */
.secondary-cta-block {
  width: 100%;
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px dashed rgba(217, 173, 78, 0.26);
}

.secondary-cta-text {
  font-size: 1.063rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. Timeline
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  height: 100%;
  width: 0;
  border-left: 2px dashed rgba(214, 169, 71, 0.5);
}

.timeline-item {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 2.25rem;
  transition: var(--transition-smooth);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: -4px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFDF7;
  border: 2px solid rgba(214, 169, 71, 0.32);
  color: var(--primary-color);
  font-family: var(--font-title);
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
  border-color: var(--gold-color);
  color: #8A6824;
  background-color: rgba(214, 169, 71, 0.12);
  box-shadow: 0 0 0 6px rgba(214, 169, 71, 0.12);
}

.timeline-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #FFFDF7 100%);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(25, 63, 58, 0.13);
  box-shadow: 0 10px 24px rgba(8, 31, 32, 0.045);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  border-color: rgba(25, 63, 58, 0.13);
  box-shadow: var(--shadow-card-hover);
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-text {
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Credibilidade
   -------------------------------------------------------------------------- */
.credibility-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.credibility-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.credibility-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 3;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 47, 51, 0.07), rgba(217, 173, 78, 0.1));
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-size: 0.938rem;
  font-weight: 700;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.credibility-content {
  padding-left: 2rem;
}

.credibility-desc {
  font-size: 1.063rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.credibility-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  flex: 1;
  border-left: 3px solid var(--gold-color);
  padding-left: 1.25rem;
}

.stat-title {
  display: block;
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-hover);
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Diferenciais
   -------------------------------------------------------------------------- */
.diff-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #FFFDF7 100%);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(25, 63, 58, 0.13);
  box-shadow: 0 10px 24px rgba(8, 31, 32, 0.045);
  transition: var(--transition-smooth);
}

.diff-card::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(217, 173, 78, 0.7), rgba(23, 183, 101, 0.45));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 63, 58, 0.13);
  box-shadow: var(--shadow-card-hover);
}

.diff-icon-box {
  width: 48px;
  height: 48px;
  color: var(--accent-hover);
  margin-bottom: 1.5rem;
}

.diff-icon-box svg {
  width: 100%;
  height: 100%;
}

.diff-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.diff-text {
  font-size: 0.938rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. CTA final
   -------------------------------------------------------------------------- */
.section-cta {
  background: linear-gradient(180deg, #FFFDF7 0%, #F4F1E8 100%);
  padding: 4.5rem 0;
}

.cta-box {
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 173, 78, 0.18), transparent 32%),
    linear-gradient(135deg, #09252A 0%, #103B37 100%);
  border-radius: var(--border-radius-lg);
  padding: 5rem 3rem;
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(8, 31, 32, 0.2);
  border: 1px solid rgba(214, 169, 71, 0.18);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(16, 185, 129, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  color: var(--bg-white);
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 253, 247, 0.78);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.cta-btn-group {
  margin-bottom: 1.5rem;
}

.cta-notice {
  font-size: 0.813rem;
  color: rgba(255, 253, 247, 0.58);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background: #071E24;
  border-top: 1px solid rgba(214, 169, 71, 0.18);
  padding: 4.5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  font-size: 0.938rem;
  color: rgba(255, 253, 247, 0.66);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgba(255, 253, 247, 0.88);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.938rem;
  color: rgba(255, 253, 247, 0.66);
}

.footer-links a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer-info-item {
  font-size: 0.938rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 253, 247, 0.66);
}

.footer-info-item strong {
  color: rgba(255, 253, 247, 0.88);
}

.footer-wa-link {
  color: var(--accent-hover);
  font-weight: 600;
}

.footer-wa-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  padding-top: 2.5rem;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.copy-text {
  font-size: 0.875rem;
  color: rgba(255, 253, 247, 0.88);
}

.legal-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 253, 247, 0.66);
  text-align: justify;
}

/* --------------------------------------------------------------------------
   14. WhatsApp flutuante
   -------------------------------------------------------------------------- */
.wa-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #18B869 0%, #0E8F54 100%);
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 151, 88, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-smooth);
}

.wa-float-btn svg {
  width: 32px;
  height: 32px;
}

.wa-float-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.1) rotate(5deg);
}

.wa-float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   15. Responsividade (Non-Hero Mobile Overrides)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hide-mobile {
    display: none !important;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-header {
    height: var(--header-height);
    padding: 0.42rem 0.55rem;
  }
  
  .main-header::before {
    inset: 0.36rem 0.55rem;
    border-radius: 13px;
  }
  
  .logo-img,
  .main-header.scrolled .logo-img {
    width: clamp(172px, 50vw, 194px);
    height: auto;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100svh - var(--header-height));
    background: rgba(7, 30, 36, 0.98);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 253, 247, 0.1);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .nav-item {
    font-size: 1.125rem;
    display: block;
    width: 100%;
  }
  
  /* Menu Burger Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .grid-2-equal {
    grid-template-columns: 1fr;
  }
  
  .credibility-content {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
    left: 0;
  }
  
  .timeline-item {
    padding-left: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .wa-float-btn {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1rem;
  }
  
  .wa-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 3.5rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 390px) {
  .logo-img,
  .main-header.scrolled .logo-img {
    width: 166px;
  }
}
