/* ============================================================
   ARISE Performance | style.css
   Paleta baseada em: Inside Digital (modelo)
   Primary: #ec6707 (laranja) | Secondary: #303360 (navy)
   Heading: #00092c | Text: #555555 | BG light: #F5F5FD | BG warm: #FAEEED
   ============================================================ */

/* --- Variáveis -------------------------------------------- */
:root {
  --blue:          #ec6707;   /* CTA, destaques, links, botões primários */
  --blue-dark:     #C26346;   /* hover */
  --blue-light:    #f09050;   /* hover states, badges */
  --gray:          #8A929E;   /* cinza logo, elementos secundários */
  --gray-dark:     #7B7B7B;   /* textos secundários */
  --dark:          #00092c;   /* headings */
  --secondary:     #303360;   /* azul-escuro secundário */
  --white:         #FFFFFF;
  --bg-light:      #F5F5FD;   /* seções alternadas */
  --bg-warm:       #FAEEED;   /* seções com fundo quente */
  --bg-dark:       #303360;   /* footer, seções escuras */
  --bg-nav-dark:   #1A1D4B;   /* drawer mobile */
  --border:        #E9E9E9;   /* bordas */
  --text-body:     #555555;   /* body */
  --text-muted:    #7B7B7B;   /* muted */
  --whatsapp:      #25D366;
  --action-green:  #16A34A;   /* cookie banner */
  --social-fb:     #1877F2;
  --social-ig:     #E1306C;
  --social-li:     #0A66C2;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px; color: var(--text-body); line-height: 1.7;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Scrollbar (IDENTIDADE-VISUAL-Arise.md) --------------- */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* --- Container (05-Responsividade-Mobile.md) -------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Image Placeholder System ----------------------------- */
.img-slot {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}
.img-slot img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.img-slot.empty {
  border: 2px dashed #CBD5E1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 6px;
  padding: 16px;
  min-height: 80px;
}
.img-slot.empty::before {
  content: '📁';
  font-size: 28px;
}
.img-slot.empty .img-label {
  font-family: 'Courier New', monospace;
  font-size: 11px; color: #64748B;
  word-break: break-all; line-height: 1.5;
}
.img-slot.empty .img-dim {
  font-size: 11px; color: #94A3B8;
  font-weight: 600;
}

/* --- Botões (IDENTIDADE-VISUAL-Arise.md) ------------------ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 16px 32px; border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.btn-secondary:hover { background: var(--blue); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  font-weight: 700; font-size: 15px; text-transform: uppercase;
  padding: 18px 48px; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.btn-white:hover { background: var(--dark); color: #fff; }

/* --- Section header (03-Secoes-Conteudo.md) --------------- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-badge {
  display: inline-block; font-weight: 700; font-size: 12px;
  color: var(--blue); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header h2 { font-weight: 700; font-size: 36px; line-height: 1.25; color: var(--dark); margin-bottom: 16px; }
.section-header h2 strong { color: var(--blue); }
.section-header p { font-size: 16px; line-height: 1.7; color: var(--text-body); }

/* ============================================================
   HEADER (02-Header-Hero-Nav.md)
   ============================================================ */
.site-header {
  width: 100%; height: 90px;
  padding: 0 40px;
  background: #fff;
  position: sticky; top: 0; z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: height 0.3s ease, background 0.3s ease;
  display: flex; align-items: center;
}
.site-header.scrolled {
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
  width: 100%; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}

/* Logo */
.site-logo { flex-shrink: 0; display: block; }
.site-logo .logo-img { width: 180px; height: auto; transition: width 0.3s ease; display: block; }
.site-logo .logo-svg { transition: width 0.3s ease; }
.site-header.scrolled .site-logo .logo-img { width: 150px; }
.site-header.scrolled .site-logo .logo-svg { width: 155px; }

/* Nav desktop (02-Header-Hero-Nav.md) */
.main-nav { display: flex; flex: 1; justify-content: center; }
.main-nav > ul { display: flex; gap: 32px; align-items: center; list-style: none; }
.main-nav a {
  font-weight: 600; font-size: 15px; color: var(--dark);
  position: relative; white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--blue);
  transition: width 0.3s ease;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { width: 100%; }

/* Dropdown (02-Header-Hero-Nav.md) */
.has-dropdown { position: relative; }
.has-dropdown > a { padding-right: 14px; }
.has-dropdown > a::before {
  content: '▾'; position: absolute; right: 0; top: 1px;
  font-size: 10px; color: var(--gray-dark);
}
.dropdown {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 6px 6px;
  min-width: 240px; padding: 8px 0 8px; z-index: 100;
  padding-top: 16px;
}
.has-dropdown > a::after { content: ''; position: absolute; bottom: -16px; left: 0; width: 100%; height: 16px; background: transparent !important; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: block; padding: 10px 20px;
  font-weight: 500; font-size: 14px; color: var(--dark);
}
.dropdown li a::after { display: none !important; }
.dropdown li a:hover { background: var(--bg-light); color: var(--blue); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.header-phone {
  font-weight: 600; font-size: 14px; color: var(--dark);
  white-space: nowrap; transition: color 0.2s;
}
.header-phone:hover { color: var(--blue); }

/* Hamburger (02-Header-Hero-Nav.md) */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; cursor: pointer;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 9997;
}
.mobile-overlay.open { display: block; }

/* Mobile drawer (02-Header-Hero-Nav.md) */
.mobile-drawer {
  position: fixed; top: 0; left: 0;
  width: 290px; height: 100vh;
  background: var(--bg-nav-dark);
  z-index: 9998;
  transform: translateX(-290px);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-logo-img { width: 150px; height: auto; }

.drawer-nav { flex: 1; padding: 8px 0; }
.drawer-nav li { list-style: none; }
.drawer-nav li a {
  display: block; padding: 12px 24px;
  font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.drawer-nav li a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.drawer-nav .drawer-section-label {
  display: block; padding: 16px 24px 6px;
  font-weight: 700; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.drawer-nav .sub-item a {
  padding-left: 36px; font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.drawer-nav .sub-item a:hover { color: var(--blue-light); }

.drawer-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.drawer-footer .btn-primary { width: 100%; justify-content: center; }

/* ============================================================
   HERO (02-Header-Hero-Nav.md)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero > .container { width: 100%; }

/* Background image slot */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #00092c 0%, #1A1D4B 40%, #303360 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-bg img.loaded { opacity: 1; }
.hero-bg-label {
  display: none; /* mostrado só quando imagem não carrega */
}
.hero-bg.empty .hero-bg-label {
  display: flex; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: monospace; font-size: 13px; color: rgba(255,255,255,0.4);
  text-align: center; padding: 20px;
}

/* Overlay gradiente sobre imagem */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 100%);
}

/* Grid decorativo */
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Elementos decorativos RevSlider */
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-shape {
  position: absolute;
  max-width: 280px;
}
.hero-shape-1 { right: 5%; top: 15%; }
.hero-shape-2 { right: 20%; bottom: 10%; opacity: 0.6; }
.hero-shape-3 { right: 35%; top: 20%; opacity: 0.4; max-width: 180px; }
.hero-shape.img-slot.empty {
  border: 1px dashed rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  width: 200px; height: 200px;
  border-radius: 8px;
}
.hero-shape.img-slot.empty .img-label { color: rgba(255,255,255,0.3); font-size: 10px; }

/* Conteúdo hero */
.hero-content {
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236,103,7,0.15); border: 1px solid rgba(236,103,7,0.4);
  color: var(--blue-light); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* 02-Header-Hero-Nav: H1 = 800 48px */
.hero h1 {
  font-weight: 800; font-size: 48px; line-height: 1.15;
  color: #fff; margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--blue-light); }

/* 02-Header-Hero-Nav: subtítulo 400 18px */
.hero-subtitle {
  font-weight: 400; font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.88); margin-bottom: 40px; max-width: 520px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

/* btn-hero-primary = btn-primary adaptado para hero */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 18px 40px; border-radius: 100px;
  box-shadow: 0 4px 24px rgba(236,103,7,0.4);
  transition: background 0.3s, transform 0.2s;
}
.btn-hero-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-hero-video {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 18px 28px; border: 1px solid rgba(255,255,255,0.25); border-radius: 100px;
  transition: border-color 0.3s, color 0.3s;
}
.btn-hero-video:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.play-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.hero-trust-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(236,103,7,0.15); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--blue-light); flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { 0%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0) translateY(18px)} }

/* ---- Hero 2 colunas ---------------------------------------- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 130px 0 80px;
}

@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-content { animation: heroFadeLeft  0.9s ease both; }
.hero-visual  { animation: heroFadeRight 0.9s 0.25s ease both; }

/* Coluna visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Imagem principal flutuante */
.hero-main-img {
  position: relative; z-index: 3;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-main-img img { width: 100%; height: auto; display: block; }
.hero-main-img.empty {
  min-height: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 16px;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Decorativos */
.hero-deco {
  position: absolute; pointer-events: none; z-index: 2;
}
.hero-deco img { width: 100%; height: auto; display: block; }
.hero-deco.empty { display: none; }

.hero-deco-1 {
  width: 28%; right: -5%; top: -8%;
  animation: heroDecoFloat 6s ease-in-out infinite;
}
.hero-deco-2 {
  width: 12%; right: -3%; bottom: 8%;
  animation: heroDecoFloat 4s ease-in-out 1s infinite;
}
.hero-deco-3 {
  width: 18%; left: -4%; top: 8%; opacity: 0.65;
  animation: heroDecoSpin 12s linear infinite;
}
.hero-deco-4 {
  width: 22%; left: -6%; bottom: 5%; opacity: 0.7;
  animation: heroDecoFloat 5s ease-in-out 0.5s infinite;
}
@keyframes heroDecoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes heroDecoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   SEÇÃO 2 — PARCEIROS / CLIENTES (03-Secoes-Conteudo.md)
   ============================================================ */
.section-partners {
  padding: 60px 0; background: #fff;
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center; font-size: 14px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 40px;
}
.partners-carousel .swiper-slide {
  display: flex; align-items: center; justify-content: center;
}
.partner-slot {
  width: 160px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  filter: grayscale(100%); opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-slot:hover { filter: grayscale(0%); opacity: 1; }
.partner-slot img {
  width: 160px; height: 56px;
  object-fit: contain;
}
.partner-slot.img-slot.empty {
  width: 160px; height: 60px;
  background: transparent; border: none;
  filter: none; opacity: 0;
  pointer-events: none;
}
.partner-slot.img-slot.empty::before,
.partner-slot.img-slot.empty .img-label,
.partner-slot.img-slot.empty .img-dim { display: none; }

/* ============================================================
   SEÇÃO 3 — POR QUE NÓS (03-Secoes-Conteudo.md)
   ============================================================ */
.section-why { padding: 80px 0; background: var(--bg-warm); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.ova-number-box {
  padding: 28px 24px;
  border-top: 3px solid var(--blue);
  background: #fff; border-radius: 6px;
}
.ova-number-box .number {
  font-weight: 800; font-size: 40px; line-height: 1;
  color: var(--blue); margin-bottom: 14px;
}
.ova-number-box h3 {
  font-weight: 700; font-size: 20px; color: var(--dark);
  margin-bottom: 10px; line-height: 1.35;
}
.ova-number-box p { font-size: 15px; line-height: 1.75; color: var(--text-body); }

/* ============================================================
   SEÇÃO 4 — SERVIÇOS (03-Secoes-Conteudo.md)
   ============================================================ */
.section-services { padding: 80px 0; background: #fff; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }

/* Slot de imagem do serviço: 800×500px */
.service-image {
  height: 220px; overflow: hidden; position: relative;
}
.service-image .img-slot { height: 100%; }
.service-image .img-slot img { transition: transform 0.4s ease; }
.service-card:hover .service-image .img-slot img { transform: scale(1.05); }
.service-image .img-slot.empty { height: 220px; flex-direction: column; }

.service-content { padding: 28px 24px; }
.service-content h3 {
  font-weight: 700; font-size: 22px; color: var(--dark);
  line-height: 1.35; margin-bottom: 12px;
}
.service-content p { font-size: 15px; line-height: 1.7; color: var(--text-body); margin-bottom: 18px; }
.service-link {
  color: var(--blue); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }
.service-link svg { transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(3px); }

/* ============================================================
   SEÇÃO 5 — ESTATÍSTICAS (03-Secoes-Conteudo.md)
   ============================================================ */
.section-stats { background: var(--bg-dark); padding: 80px 0; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-item { padding: 20px; }
.stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-number {
  font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--blue-light); display: inline-block;
}
.stat-suffix { font-weight: 800; font-size: 36px; color: var(--blue-light); }
.stat-divider {
  width: 32px; height: 2px; background: var(--blue);
  margin: 12px auto; border-radius: 2px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ============================================================
   SEÇÃO 6 — COMO FUNCIONA (adaptado)
   ============================================================ */
.section-how { padding: 80px 0; background: var(--bg-light); }

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

.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; position: relative;
}
.how-step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 19px; top: 52px;
  width: 2px; height: calc(100% - 28px);
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(236,103,7,0.35);
}
.step-body h4 { font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--text-body); }

.how-visual {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1A1D4B 100%);
  border-radius: 16px; padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(48,51,96,0.4);
}
.how-visual-title { font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 20px; }
.how-metric {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.metric-left { flex: 1; }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.metric-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.metric-fill { height: 100%; background: var(--blue); border-radius: 2px; }
.metric-value { font-weight: 700; font-size: 19px; color: var(--blue-light); }
.how-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 14px; }

/* ============================================================
   SEÇÃO 7 — DEPOIMENTOS (03-Secoes-Conteudo.md + 07-Dados)
   ============================================================ */
.section-testimonials { padding: 80px 0; background: #fff; }

.testimonials-carousel { padding-bottom: 48px !important; }
.testimonial-card {
  background: var(--bg-light); border-radius: 12px; padding: 40px;
  border: 1px solid var(--border); height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-stars { color: #F59E0B; font-size: 20px; letter-spacing: 2px; margin-bottom: 16px; }
blockquote {
  font-size: 16px; line-height: 1.7; color: #444;
  font-style: italic; margin-bottom: 24px; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }

/* Avatar: img-slot 100×100px (06-Imagens-e-Links.md) */
.testimonial-avatar-slot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar-slot img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.testimonial-avatar-slot.img-slot.empty {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.testimonial-avatar-slot.img-slot.empty .img-label { display: none; }
.testimonial-avatar-slot.img-slot.empty::after {
  content: attr(data-initial);
  font-weight: 700; font-size: 20px; color: #fff;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.author-company { font-size: 13px; color: var(--text-muted); }

.swiper-pagination-bullet {
  background: var(--border); opacity: 1;
  width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--blue); width: 24px; border-radius: 4px;
}

/* ============================================================
   SEÇÃO 8 — FAQ (03-Secoes-Conteudo.md)
   ============================================================ */
.section-faq { padding: 80px 0; background: var(--bg-light); }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 8px; margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.faq-item.open {
  box-shadow: 0 4px 20px rgba(236,103,7,0.1);
  border-color: var(--blue-light);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; font-size: 16px; color: var(--dark);
  cursor: pointer; text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-item.open .faq-question { color: var(--blue); }
.faq-icon {
  font-size: 22px; color: var(--blue); flex-shrink: 0;
  font-weight: 400; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px; line-height: 1.75; color: var(--text-body);
}

/* ============================================================
   SEÇÃO 9 — BLOG (03-Secoes-Conteudo.md)
   ============================================================ */
.section-blog { padding: 80px 0; background: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }

/* Blog image slot: 800×500px (06-Imagens-e-Links.md) */
.blog-image {
  height: 200px; overflow: hidden; position: relative;
}
.blog-image .img-slot { height: 100%; }
.blog-image .img-slot img { transition: transform 0.4s; }
.blog-card:hover .blog-image .img-slot img { transform: scale(1.05); }
.blog-image .img-slot.empty { height: 200px; }

.blog-category {
  position: absolute; top: 16px; left: 16px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; letter-spacing: 0.5px; z-index: 1;
}
.blog-content { padding: 24px; }
.blog-meta {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 10px; display: flex; gap: 16px;
}
.blog-content h3 {
  font-weight: 700; font-size: 17px; color: var(--dark);
  line-height: 1.4; margin-bottom: 10px;
}
.blog-content p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; }
.blog-link {
  color: var(--blue); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 12px; }

/* ============================================================
   SEÇÃO 10 — CTA FINAL
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-weight: 800; font-size: 36px; color: #fff;
  margin-bottom: 16px; line-height: 1.2;
}
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-checklist {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.cta-check {
  color: rgba(255,255,255,0.85); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cta-check-icon { color: #86EFAC; font-weight: 700; }

/* ============================================================
   FOOTER (04-Componentes-UI.md)
   ============================================================ */
.site-footer { background: var(--bg-dark); color: var(--text-muted); }
.footer-main { padding: 60px 0 48px; }

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

.footer-col h4 {
  font-weight: 700; font-size: 16px; color: #fff;
  margin-bottom: 20px; line-height: 1.4;
}
.footer-col p { font-size: 14px; line-height: 1.75; color: var(--text-muted); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 0;
  transition: color 0.2s, gap 0.2s;
}
.footer-col ul li a:hover { color: var(--blue-light); gap: 4px; }

/* Logo no footer: logo-arise-branca.png (06-Imagens-e-Links.md) */
.footer-logo { margin-bottom: 16px; }
.footer-logo .img-slot { background: transparent; }
.footer-logo .img-slot.empty { border: 1px dashed rgba(255,255,255,0.15); width: 170px; height: 50px; }
.footer-logo .img-slot.empty .img-label { color: rgba(255,255,255,0.3); font-size: 9px; }
.footer-logo-svg { width: 170px; }

/* Redes sociais (04-Componentes-UI.md) */
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 4px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-social a[data-net="facebook"]:hover { background: var(--social-fb); }
.footer-social a[data-net="instagram"]:hover { background: var(--social-ig); }
.footer-social a[data-net="linkedin"]:hover { background: var(--social-li); }

/* Contato footer */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 12px;
}
.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-contact-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; font-size: 15px; }

/* Selos / certificações (06-Imagens-e-Links.md: 150×100px) */
.footer-seals { margin-top: 20px; }
.footer-seals-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.seal-slot {
  width: 90px; height: 56px;
  filter: grayscale(100%) brightness(1.5); opacity: 0.5;
  transition: all 0.3s; border-radius: 4px; overflow: hidden;
}
.seal-slot:hover { filter: grayscale(0%) brightness(1); opacity: 1; }
.seal-slot img { width: 100%; height: 100%; object-fit: contain; }
.seal-slot.img-slot.empty {
  border: 1px dashed rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03); filter: none; opacity: 1;
}
.seal-slot.img-slot.empty .img-label { color: rgba(255,255,255,0.25); font-size: 8px; }

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #4B5563; }
.footer-bottom a { color: var(--blue-light); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   ELEMENTOS FIXOS (04-Componentes-UI.md)
   ============================================================ */

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 9990;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: pulseWA 2.5s ease infinite;
}
@keyframes pulseWA { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.7);opacity:0} }

/* Scroll to top (04-Componentes-UI.md) */
.scroll-to-top {
  position: fixed; bottom: 85px; right: 20px;
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(236,103,7,0.3);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* Cookie banner (04-Componentes-UI.md) */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1F2937; color: #fff;
  padding: 16px 40px;
  z-index: 99997;
  display: none; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 2px solid var(--blue);
}
.cookie-banner.show { display: flex; animation: slideUpBanner 0.4s ease; }
@keyframes slideUpBanner { from{transform:translateY(100%)} to{transform:translateY(0)} }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.8); flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--blue-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--action-green); color: #fff;
  font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 4px;
  cursor: pointer; transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #15803D; }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2); font-size: 13px;
  padding: 10px 16px; border-radius: 4px; cursor: pointer;
  transition: color 0.2s;
}
.btn-cookie-decline:hover { color: #fff; }

/* Animações scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   ANIMAÇÕES GLOBAIS (01-Stack-e-Cores.md adaptado)
   ============================================================ */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,103,7,0.4); }
  70%  { box-shadow: 0 0 0 15px rgba(236,103,7,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,103,7,0); }
}
@keyframes slideInLeft { from{transform:translateX(-290px)} to{transform:translateX(0)} }

/* ============================================================
   RESPONSIVIDADE (05-Responsividade-Mobile.md)
   ============================================================ */

/* Tablet 768–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-header { height: 80px; padding: 0 30px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-right .btn-primary { display: none; }
  .header-right { display: none; }

  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .hero-inner { grid-template-columns: 1fr; padding: 120px 0 70px; gap: 0; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }

  .container { padding: 0 30px; }
  section { padding: 60px 0; }
}

/* Mobile até 767px */
@media (max-width: 767px) {
  .site-header { height: 70px; padding: 0 20px; }
  .main-nav { display: none !important; }
  .header-phone { display: none; }
  .header-right .btn-primary { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: 32px; line-height: 1.2; }
  h2 { font-size: 26px; line-height: 1.3; }
  h3 { font-size: 20px; }
  p  { font-size: 15px; }
  .btn-primary, .btn-hero-primary { font-size: 13px; padding: 14px 24px; }

  .container { padding: 0 20px; }
  section { padding: 50px 0; }

  .hero-inner { grid-template-columns: 1fr; padding: 100px 0 60px; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-video { justify-content: center; text-align: center; }
  .hero-trust { gap: 16px; }

  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 26px; }

  .why-grid { grid-template-columns: 1fr; }
  .ova-number-box { padding: 22px 18px; }
  .ova-number-box .number { font-size: 32px; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-content { padding: 20px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 40px; }

  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-visual { order: -1; }

  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-content { padding: 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 0 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .cta-checklist { flex-direction: column; align-items: center; gap: 12px; }

  .section-cta .cta-inner h2 { font-size: 26px; }
  .section-cta .btn-white { padding: 16px 32px; }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .section-header h2 { font-size: 22px; }
  .stat-number { font-size: 34px; }
}

/* Large desktop 1441px+ */
@media (min-width: 1441px) {
  .container { max-width: 1400px; }
  .hero h1 { font-size: 56px; }
  .section-header h2 { font-size: 40px; }
}
