/* ==========================================
   RD Assessoria — Main Stylesheet
   ========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  --navy:        #0A0A0A;
  --navy-light:  #1A1A1A;
  --gold:        #111111;
  --gold-light:  #333333;
  --gold-dark:   #000000;
  --white:       #FFFFFF;
  --off-white:   #F5F5F0;
  --gray:        #737373;
  --gray-light:  #D4D4D4;
  --dark-text:   #0A0A0A;
  --section-bg:  #F8F7F3;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(0,0,0,0.28);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #A8863A 0%, #111111 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.85rem;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* --- Buttons — Slide-fill animation system --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.35s cubic-bezier(0.4,0,0.2,1),
    border-color 0.35s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

/* Slide-in fill layer */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn:hover::before { transform: scaleX(1); }

/* Primary — gold fill, slide to darker gold */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.btn-primary::before { background: var(--gold-dark); }
.btn-primary:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

/* Outline light — for dark hero backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline::before { background: rgba(255,255,255,0.12); }
.btn-outline:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Outline dark — white fill on navy */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark::before { background: var(--navy); }
.btn-outline-dark:hover { color: var(--white); }

/* WhatsApp */
.btn-whatsapp {
  background: #1FAD54;
  color: var(--white);
  border-color: #1FAD54;
  box-shadow: 0 4px 18px rgba(31,173,84,0.35);
}
.btn-whatsapp::before { background: #178a43; }
.btn-whatsapp:hover {
  border-color: #178a43;
  box-shadow: 0 6px 26px rgba(31,173,84,0.45);
}


/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--gold-dark); }
.navbar.scrolled .hamburger span { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-logo:hover img {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Light navbar variant — dark links on white hero */
.navbar-light:not(.scrolled) .nav-links a { color: var(--navy); }
.navbar-light:not(.scrolled) .nav-links a:hover,
.navbar-light:not(.scrolled) .nav-links a.active { color: var(--gold-dark); }
.navbar-light:not(.scrolled) .hamburger span { background: var(--navy); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  padding: 1rem 0;
}
.mobile-menu a {
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(0,0,0,0.08); }
.mobile-menu.open { display: flex; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-left: 0;
}
.hero > .container {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(2rem, 6vw, 7rem);
  padding-right: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg1.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(255,255,255,0.80) 0%,
    rgba(255,255,255,0.55) 35%,
    rgba(255,255,255,0.15) 60%,
    rgba(255,255,255,0.0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.6);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span { color: var(--gold-dark); }

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(10,10,10,0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  color: rgba(10,10,10,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4), transparent);
  animation: scrollBounce 2s infinite;
}

/* ==========================================
   APRESENTAÇÃO — Split-Screen Luxury
   ========================================== */
.apresentacao {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding: 0 0 80px; /* space for the floating stats card */
}

/* LEFT — text column */
.apres-text-col {
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: 7rem 5rem 8rem 5rem;
  position: relative;
  z-index: 2;
  overflow: hidden; /* clips the skew pseudo-element */
}
.apres-text-col::after {
  content: '';
  position: absolute;
  top: 0; right: -60px;
  width: 120px;
  height: 100%;
  background: var(--off-white);
  transform: skewX(-4deg);
  z-index: 1;
}

.apres-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.apres-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.apres-inner h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.apres-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.5rem 0;
}

.apres-lead {
  font-size: 1.05rem;
  color: rgba(10,10,10,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.apres-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.apres-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
}
.apres-check {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* RIGHT — photo column */
.apres-photo-col {
  position: relative;
  overflow: hidden;
}
.apres-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.apres-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(248,247,243,0.35) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.45) 100%);
}

/* ==========================================
   ESTATÍSTICAS BANNER
   ========================================== */
.stats-banner {
  position: relative;
  z-index: 20;
  margin-top: -6rem;
  padding-bottom: 0;
}

/* FLOATING stats card — LUXURY */
.apres-stats-card {
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 60%, #141414 100%);
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 24px;
  padding: 2.25rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(0,0,0,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.5);
  white-space: nowrap;
  min-width: 560px;
}

/* Top gold accent line */
.apres-stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%);
  border-radius: 0 0 2px 2px;
  pointer-events: none;
}

/* Inner shimmer */
.apres-stats-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.apres-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.apres-stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(255,255,255,0.35);
}
.apres-stat-num small {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 3px;
  color: rgba(255,255,255,0.7);
  vertical-align: super;
  letter-spacing: 0;
}
.apres-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apres-stat-divider {
  width: 1px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.4) 30%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .apres-text-col { padding: 6rem 3rem 10rem 3rem; }
}
@media (max-width: 768px) {
  .apresentacao { grid-template-columns: 1fr; min-height: auto; }
  .apres-text-col { padding: 5rem 2rem 9rem; }
  .apres-text-col::after { display: none; }
  .apres-photo-col { height: 320px; order: -1; }
  .apres-photo-overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.1), rgba(10,10,10,0.5));
  }
  .apres-stats-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    bottom: -48px;
    width: 90%;
    min-width: unset;
    white-space: normal;
  }
  .apres-stat-divider { display: none; }
}

/* ==========================================
   DIFERENCIAIS — 3-col robust grid
   ========================================== */
.diferenciais { background: var(--section-bg); padding-top: 6rem; }

.diferenciais-header { text-align: center; margin-bottom: 4rem; }
.diferenciais-header h2 { margin-bottom: 0.75rem; font-size: 2.5rem; letter-spacing: -0.02em; }
.diferenciais-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dif-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 4px solid transparent;
  transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-top-color 0.6s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
  overflow: hidden;
}
.dif-card::before {
  content: attr(data-numero);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.dif-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  border-top-color: var(--navy);
}
.dif-card:hover::before {
  opacity: 0.8;
  transform: translateY(-5px);
}
.dif-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--navy); 
}
.dif-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

.dif-icon {
  width: 64px; height: 64px;
  background: var(--section-bg);
  color: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.dif-card:hover .dif-icon { 
  background: var(--navy); 
  color: var(--white);
  transform: scale(1.1);
}

/* ==========================================
   SERVIÇOS — more robust
   ========================================== */
.servicos { background: var(--navy); }

.servicos-header { text-align: center; margin-bottom: 4rem; }
.servicos-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.servicos-header p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; font-size: 1rem; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.servico-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 3px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.servico-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.2);
  border-top-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.servico-card:hover::before { opacity: 1; }

.servico-num {
  margin-bottom: 2rem;
  display: block;
}
.servico-card h3 { 
  color: var(--white); 
  margin-bottom: 1rem; 
  font-size: 1.35rem; 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  line-height: 1.3;
}
.servico-card p { 
  color: rgba(255,255,255,0.6); 
  font-size: 0.95rem; 
  line-height: 1.7; 
  flex: 1; 
}
.servico-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.4s ease, opacity 0.4s ease;
  opacity: 0.7;
}
.servico-card:hover .servico-arrow { gap: 1rem; opacity: 1; }

.servicos-cta { text-align: center; }


/* ==========================================
   VÍDEOS REELS SLIDER
   ========================================== */
.videos-section { background: var(--section-bg); overflow: hidden; }

.videos-header { text-align: center; margin-bottom: 3rem; }
.videos-header h2 { margin-bottom: 0.75rem; }
.videos-header p { color: var(--gray); }

.reels-wrapper { position: relative; }

.reels-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.reels-track-outer:active { cursor: grabbing; }

.reels-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 1rem 0 1.5rem;
}

.reel-card {
  flex: 0 0 220px;
  width: 220px;
  height: 390px;
  border-radius: var(--radius-xl);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  cursor: pointer;
}
.reel-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.reel-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-thumb-emoji { font-size: 3.5rem; opacity: 0.3; }

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
}

.reel-gold-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.reel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
}
.reel-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}
.reel-title {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.reel-play-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.reel-play-btn:hover { background: var(--gold-dark); transform: scale(1.05); }
.reel-play-btn svg { width: 14px; height: 14px; fill: var(--white); }

.reels-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.reels-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.reels-nav-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.reels-nav-btn svg { width: 18px; height: 18px; }

.reels-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.reels-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.reels-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================
   CTA SECTION (Home)
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.12) 0%, transparent 70%);
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.5rem; position: relative; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-gold { color: var(--gold); }

/* ==========================================
   SOBRE PAGE — Specific
   ========================================== */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 4rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.page-breadcrumb a { color: var(--gold); }
.page-breadcrumb a:hover { text-decoration: underline; }

/* Sobre Bio */
.bio-section { background: var(--white); }
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.bio-avatar {
  background: var(--navy);
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bio-avatar-inner {
  font-size: 6rem;
  opacity: 0.15;
}
.bio-avatar-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem; right: 1.5rem;
}
.bio-avatar-label h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.25rem; }
.bio-avatar-label span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

.bio-accent-bar {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.bio-text h2 { margin-bottom: 1.25rem; }
.bio-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; font-size: 1.02rem; }

/* MVV (Missão Visão Valores) */
.mvv-section { background: var(--section-bg); }
.mvv-header { text-align: center; margin-bottom: 3.5rem; }
.mvv-header h2 { margin-bottom: 0.75rem; }
.mvv-header p { color: var(--gray); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.mvv-card::before {
  content: attr(data-numero);
  position: absolute;
  top: -15px;
  right: -5px;
  font-size: 8rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.03;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  pointer-events: none;
}
.mvv-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 24px 64px rgba(0,0,0,0.08); 
  z-index: 2; 
  position: relative; 
  border-bottom-color: var(--gold);
}
.mvv-card:hover::before {
  opacity: 0.08;
  transform: scale(1.1) translateX(-10px);
  color: var(--gold);
}

.frase-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.frase-card p {
  color: var(--white);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
}
.frase-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}
.frase-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.frase-card:hover::before {
  transform: translateY(10px) scale(1.1) rotate(-5deg);
  opacity: 0.3;
}
.mvv-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.mvv-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.mvv-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray);
  font-size: 0.9rem;
}
.mvv-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================
   INNER PAGES HERO (.page-hero)
   ========================================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: #0A0A0A;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, #0A0A0A 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.page-breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: var(--white); font-weight: 700; transition: color 0.3s; }
.page-hero h1 { font-size: 3rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.6; }

/* ==========================================
   TRABALHOS PAGE — Specific
   ========================================== */
.areas-section { background: var(--white); }
.areas-header { text-align: center; margin-bottom: 3.5rem; }
.areas-header h2 { margin-bottom: 0.75rem; }
.areas-header p { color: var(--gray); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-item {
  background: var(--navy);
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.area-item::before {
  content: attr(data-numero);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--white);
  opacity: 0.03;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.area-item:hover { 
  background: var(--navy-light); 
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.area-item:hover::before {
  opacity: 0.08;
  transform: translateY(-5px) scale(1.05);
}
.area-item.light-card {
  background: #f8f9fa;
}
.area-item.light-card:hover {
  background: #ffffff;
}
.area-item.light-card::before {
  color: var(--navy);
  opacity: 0.05;
}
.area-item.light-card:hover::before {
  opacity: 0.1;
}

.area-item h3 { color: var(--white); font-size: 1.15rem; font-weight: 700; font-family: 'Inter', sans-serif; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.area-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }

/* Resultados */
.resultados-section { background: var(--gold); }
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.resultado-item .result-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.resultado-item .result-label {
  color: rgba(10,10,10,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Depoimentos */
.depoimentos-section { background: var(--section-bg); }
.depoimentos-header { text-align: center; margin-bottom: 3.5rem; }
.depoimentos-header h2 { margin-bottom: 0.75rem; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dep-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.dep-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 24px 64px rgba(0,0,0,0.08); 
}

.dep-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
.dep-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }

.dep-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dep-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.dep-name { font-weight: 700; font-size: 0.9rem; color: var(--dark-text); }
.dep-role { font-size: 0.78rem; color: var(--gray); }

.dep-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.dep-stars span { color: var(--gold); font-size: 0.9rem; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.floating-card {
  animation: float 6s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
/* Global definitions for new grids */
.sobre-rd-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sobre-rd-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero > .container { padding-left: 1.5rem; padding-right: 1.5rem; }

  .sobre-rd-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-avatar { aspect-ratio: 4/3; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .resultados-grid { grid-template-columns: 1fr; }
}

@keyframes checkPop {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.3) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.animated-checklist {
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  margin-top: 1.5rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  opacity: 0; 
}
.reveal.visible .check-icon {
  animation: checkPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
