/* ============================================
   OUT OF THE BOX — Marketing Estratégico
   ============================================ */

:root {
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --purple-glow: rgba(168, 85, 247, 0.3);
  --black: #000000;
  --gray-950: #0a0a0f;
  --gray-900: #171720;
  --gray-800: #27272f;
  --gray-700: #3d3d47;
  --gray-500: #71717a;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

section {
  padding: 4.5rem 0;
}

@media (min-width: 640px) {
  section { padding: 7rem 0; }
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: #e5e5e5;
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--purple-500);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(168, 85, 247, 0.1);
}

/* ============ NAVIGATION ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 1400px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.nav-logo span {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--gray-300);
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::before { display: none; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: #e5e5e5; }

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--gray-300);
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a.nav-cta { width: 100%; text-align: center; }
.mobile-menu a:not(.nav-cta) {
  color: var(--gray-300);
  font-weight: 600;
  padding: 0.4rem 0;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #000 0%, #0a0a14 50%, #000 100%);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 380px;
  height: 380px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero h1, .page-header h1, h2.section-title {
  font-weight: 900;
  line-height: 1.1;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.2rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero h1 .accent {
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 0.95rem;
  color: var(--gray-300);
  max-width: 34rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .hero p.lead { font-size: 1.1rem; } }

.deco-line {
  height: 4px;
  width: 100%;
  max-width: 220px;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400), transparent);
  background-size: 1000px 100%;
  animation: shimmerLine 3s linear infinite, lineGlow 2s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat {
  border-left: 2px solid var(--gray-700);
  padding-left: 1.25rem;
  transition: transform 0.3s ease;
}
.stat:hover { transform: translateY(-5px); }
.stat .num {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}
@media (min-width: 1024px) { .stat .num { font-size: 2.8rem; } }
.stat .num .plus { color: var(--purple-400); font-size: 1.1rem; }
.stat .label { color: var(--gray-400); font-size: 0.85rem; }

/* ============ WAVE DIVIDER ============ */
.wave-divider {
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q300,0 600,30 T1200,30 L1200,60 L0,60 Z" fill="%23a855f7" opacity="0.15"/></svg>') repeat-x;
  background-size: 600px 60px;
  animation: waveMove 8s linear infinite;
}

@keyframes waveMove {
  from { background-position: 0 0; }
  to { background-position: 600px 0; }
}

/* ============ SECTION HEADERS ============ */
.badge {
  display: inline-block;
  background: var(--purple-500);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.badge-wrap { display: flex; justify-content: center; }

h2.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { h2.section-title { font-size: 2rem; } }
@media (min-width: 1024px) { h2.section-title { font-size: 2.5rem; } }

.section-sub {
  color: var(--gray-400);
  max-width: 40rem;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

/* ============ CARDS / GRIDS ============ */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.85rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.glass-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 30px var(--purple-glow);
  transform: translateY(-5px);
}
.glass-card .big-num {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.glass-card p {
  color: var(--gray-300);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-card {
  background: linear-gradient(145deg, var(--gray-900), var(--gray-950));
  border: 1px solid var(--gray-800);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(168,85,247,0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.service-card .img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--gray-900);
}
.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
}
.service-card .body { padding: 1.5rem; }
.service-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(168,85,247,0.2);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--purple-400);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============ RESULT / METRIC BOX ============ */
.metric-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--gray-700);
  border-radius: 0.6rem;
  padding: 1rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}
.metric-box .metric-label {
  color: var(--gray-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.metric-box .metric-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple-400);
}

/* ============ FADE-IN ANIMATIONS (scroll reveal) ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.7s ease-out; }
.fade-in-down { animation: fadeInDown 0.7s ease-out; }

@keyframes shimmerLine {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(168,85,247,0.3), 0 0 20px rgba(168,85,247,0.1); }
  50% { box-shadow: 0 0 20px rgba(168,85,247,0.6), 0 0 40px rgba(168,85,247,0.3); }
}

/* ============ PAGE HEADER (subpáginas) ============ */
.page-header {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(to bottom, #000, var(--gray-950));
  border-bottom: 1px solid var(--gray-900);
}
.page-header h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .page-header h1 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .page-header h1 { font-size: 3.2rem; } }
.page-header .accent { color: var(--gray-500); }
.page-header p {
  color: var(--gray-300);
  font-weight: 300;
  max-width: 42rem;
  font-size: 0.95rem;
}
@media (min-width: 1024px) { .page-header p { font-size: 1.05rem; } }

/* ============ PORTFOLIO SLIDER ============ */
.slider-wrap {
  position: relative;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  height: 320px;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  transition: border-color 0.3s ease;
}
.slide:hover { border-color: rgba(168,85,247,0.5); }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slide:hover img { transform: scale(1.06); }
.slide .caption {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 700;
}
.slide:hover .caption { opacity: 1; }

.slider-arrows {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.slider-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--purple-500);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.slider-arrows button:hover { background: #9333ea; }

/* ============ CLIENT LOGOS ============ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-grid { grid-template-columns: repeat(5, 1fr); } }

.logo-tile {
  background: linear-gradient(145deg, #d1d5db, #9ca3af);
  border-radius: 0.85rem;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.logo-tile:hover { transform: scale(1.05); }
.logo-tile img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .logo-tile { height: 150px; }
  .logo-tile img { max-width: 120px; max-height: 120px; }
}

.stat-pill {
  display: inline-block;
  background: linear-gradient(145deg, var(--gray-900), var(--gray-950));
  border: 1px solid var(--gray-800);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-300);
}
.stat-pill b { color: var(--white); }

/* ============ FORM (Contato) ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--gray-950);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple-500);
}
.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-card .icon-box {
  width: 46px;
  height: 46px;
  background: rgba(168,85,247,0.15);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-weight: 800;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.contact-info-card p, .contact-info-card a {
  color: var(--gray-400);
  font-size: 0.88rem;
}
.contact-info-card a:hover { color: var(--white); }

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--gray-900);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h3 {
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.95rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--white); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-900);
  color: var(--gray-500);
  font-size: 0.85rem;
}
.footer-bottom p:last-child {
  color: var(--gray-700);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ============ WHATSAPP FLOAT BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background: #16a34a;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(34,197,94,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============ EMAIL FLOAT BUTTON ============ */
.email-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--black);
  border-radius: 9999px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.email-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple-500);
}
.email-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(168,85,247,0.4);
}
.email-float .float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.email-float .float-text .small {
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--gray-500);
}
@media (max-width: 480px) {
  .email-float .float-text .small { display: none; }
  .email-float { padding: 0.9rem; }
}

.footer-whatsapp-note {
  color: var(--gray-600);
  font-size: 0.78rem;
  margin-top: 0.5rem;
}
.footer-whatsapp-note a {
  color: var(--gray-500);
}
.footer-whatsapp-note a:hover { color: var(--gray-300); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--gray-950);
  border-top: 1px solid var(--gray-800);
  padding: 1.1rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner p {
  color: var(--gray-300);
  font-size: 0.85rem;
  max-width: 42rem;
}
.cookie-banner p a {
  color: var(--purple-400);
  font-weight: 700;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner-actions button,
.cookie-banner-actions a.btn-outline {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

/* ============ FAQ ACCORDION ============ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(145deg, var(--gray-900), var(--gray-950));
  border: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(168,85,247,0.4);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--white);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  color: var(--purple-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ DEPOIMENTO (BOLHA ESTILO CHAT) ============ */
.testimonial-wrap {
  max-width: 32rem;
  margin: 0 auto;
}
.testimonial-bubble {
  background: #005c4b;
  border-radius: 1rem;
  border-top-right-radius: 0.2rem;
  padding: 1.25rem 1.5rem;
  position: relative;
}
.testimonial-bubble p {
  color: #e9edef;
  font-size: 0.95rem;
  line-height: 1.6;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.testimonial-meta .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-meta .name {
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial-meta .role {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* CTA final sections */
.cta-final {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}
.cta-final h2 { margin-bottom: 1.25rem; }
.cta-final p {
  color: var(--gray-300);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.note-box {
  margin-top: 3rem;
  background: linear-gradient(145deg, var(--gray-900), var(--gray-950));
  border: 1px solid var(--gray-800);
  border-radius: 0.85rem;
  padding: 1.75rem;
  text-align: center;
}
.note-box p { color: var(--gray-300); font-size: 0.92rem; }
.note-box b { color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
