:root {
  /* Brand Colors */
  --color-primary-blue: #0E095B;
  --color-primary-orange: #D8741B;
  --color-secondary-orange: #D44D1C;
  --color-white: #FFFFFF;
  
  /* Contextual Colors */
  --color-black-bg: #05050A;
  --color-dark-bg: #0A0A14;
  --color-glass: rgba(255, 255, 255, 0.03);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-text: #E5E7EB;
  --color-text-muted: #9CA3AF;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--color-primary-orange), var(--color-secondary-orange));
  --gradient-glow: linear-gradient(90deg, var(--color-primary-orange), var(--color-secondary-orange), var(--color-primary-orange));
  --gradient-hero: radial-gradient(circle at 50% 0%, rgba(14, 9, 91, 0.8) 0%, var(--color-black-bg) 70%);

  /* Typography */
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-space: 'Space Grotesk', sans-serif;

  /* Effects */
  --shadow-glow: 0 0 24px rgba(216, 116, 27, 0.4);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

::selection {
  background-color: var(--color-primary-orange);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-primary-orange);
  color: var(--color-white);
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-inter);
  color: var(--color-text);
  background-color: var(--color-black-bg);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1025px) {
  body, a, button, .btn {
    cursor: none !important;
  }
}

/* ================= Custom Cursor ================= */
.custom-cursor {
  position: fixed;
  width: 45px;
  height: 45px;
  background-image: url('../../img/svg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(216, 116, 27, 0.3));
}

.custom-cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  display: none; /* Hidden to emphasize the logo cursor */
}

.custom-cursor.hover {
  width: 65px;
  height: 65px;
  filter: drop-shadow(0 0 15px rgba(216, 116, 27, 0.6));
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

/* ================= Custom Scrollbar ================= */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-black-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-orange);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary-orange);
}

/* ================= Typography & Utilities ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-space);
  color: var(--color-white);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.py-section {
  padding: 100px 0;
}

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

.bg-darker {
  background-color: var(--color-dark-bg);
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.gradient-text-alt {
  background: linear-gradient(90deg, var(--color-primary-orange), var(--color-secondary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-orange);
  margin-bottom: 16px;
  display: block;
}

.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-glass);
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.z-1 {
  z-index: 1;
}

.glass-border {
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  background: var(--gradient-glow);
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  opacity: 1;
  animation: bg-pan 3s linear infinite;
}

.btn-glow {
  box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
  box-shadow: 0 0 32px rgba(216, 116, 27, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-glass-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

@keyframes bg-pan {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.btn-attention {
  animation: pulse-attention 2s infinite ease-in-out;
}

@keyframes pulse-attention {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 116, 27, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(216, 116, 27, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 116, 27, 0); }
}

/* ================= Navbar ================= */
.navbar {
  position: fixed;
  top: 15px; left: 0; right: 0;
  z-index: 1000;
  padding: 5px 0;
  height: 70px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  top: 0;
  padding: 5px 0;
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-glass-border);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-space);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.logo-img {
  width: auto;
  height: 120px;
  display: block;
  transform: translateY(25px);
  transition: var(--transition-smooth);
}

.logo-highlight {
  color: var(--color-primary-orange);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition-smooth);
}

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

.menu-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-mobile span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

/* ================= Hero ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--color-black-bg), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-container-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: left;
  max-width: 100%;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards 0.2s;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards 0.4s;
}

.hero-photo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.photo-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anderson-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 2;
  /* Blur/Fade no corte inferior - Aumentado */
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.photo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 3;
  animation: sweep 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes sweep {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.photo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(216, 116, 27, 0.25) 0%, transparent 70%);
  z-index: 1;
  animation: rotateGlow 20s linear infinite;
}

.hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards 0.6s;
}

/* ================= Ticker ================= */
.ticker-wrap {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(5, 5, 10, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-black-bg), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-black-bg), transparent);
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 60px;
  font-family: var(--font-space);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: var(--color-white);
  text-transform: uppercase;
  opacity: 0.7;
  position: relative;
}

.ticker-item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  background: var(--color-primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary-orange);
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes ticker-reverse {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.ticker-wrap-alt {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--color-primary-orange);
  padding: 20px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.ticker-reverse {
  animation: ticker-reverse 40s linear infinite;
}

.ticker-wrap-alt .ticker-item {
  color: var(--color-primary-blue);
  opacity: 0.9;
}

.ticker-wrap-alt .ticker-item::after {
  background: var(--color-primary-blue);
  box-shadow: 0 0 10px rgba(14, 9, 91, 0.4);
}

/* ================= Problema ================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 40px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-item {
  display: flex;
  gap: 20px;
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(216, 116, 27, 0.1);
  color: var(--color-primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: var(--font-inter);
}

.problem-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.modern-card {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 150px; height: 150px;
  background: var(--color-primary-blue);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(216, 116, 27, 0.2);
  color: var(--color-primary-orange);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(216, 116, 27, 0.3);
}

.modern-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.modern-card p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.link-arrow {
  color: var(--color-white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-primary-orange);
}

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

.link-arrow svg {
  transition: var(--transition-fast);
}

/* ================= Serviços (Bento Grid) ================= */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}

.bento-item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinhamento no topo para preencher melhor */
  height: 100%;
  border: 1px solid var(--color-glass-border);
}

.bento-item-1 {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(135deg, rgba(216, 116, 27, 0.1) 0%, rgba(5, 5, 10, 0.4) 100%);
}

.bento-item-2 {
  grid-column: span 1;
  grid-row: span 2; /* Card alto na lateral */
  background: linear-gradient(180deg, rgba(46, 77, 255, 0.1) 0%, rgba(5, 5, 10, 0.4) 100%);
  justify-content: center;
  text-align: center;
}

.bento-item-2 .service-icon-wrapper {
  margin: 0 auto 20px;
}

.bento-item-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-item-4 {
  grid-column: span 1;
  grid-row: span 1;
}

.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-primary-orange);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-item-1 { grid-column: span 2; }
  .bento-item-2 { grid-column: span 1; grid-row: span 1; }
  .bento-item-3 { grid-column: span 1; }
  .bento-item-4 { grid-column: span 2; }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-item { 
    grid-column: span 1 !important; 
    grid-row: span 1 !important;
    min-height: 250px;
    padding: 30px;
  }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 116, 27, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-primary-orange);
  border: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-brand);
  color: var(--color-white);
  transform: scale(1.1);
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ================= Impact Section ================= */
.impact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  padding: 100px 0;
}

.impact-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.impact-text {
  font-family: var(--font-space);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(14, 9, 91, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .impact-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .impact-section {
    min-height: 80vh;
  }
  .impact-text {
    font-size: 2.5rem;
  }
}

/* ================= Sobre ================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 30px;
  padding: 12px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-badge {
  position: absolute;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glass);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.badge-1 {
  bottom: 40px;
  left: -30px;
}

.badge-2 {
  top: 40px;
  right: -30px;
  animation-delay: 2s;
}

.badge-1 .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-orange);
  line-height: 1;
}

.badge-1 .text, .badge-2 .text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}

.badge-2 svg {
  color: #4A90E2;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-content strong {
  color: var(--color-white);
  font-weight: 600;
}

.about-quote {
  padding: 30px;
  margin-top: 40px;
  border-left: 4px solid var(--color-primary-orange);
}

.about-quote p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-white);
}

.about-quote em {
  font-style: italic;
}

/* ================= Depoimentos ================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  margin-bottom: 24px;
}

.stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pseudo-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.author-info h4 {
  font-family: var(--font-inter);
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ================= FAQ ================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.faq-question h3 {
  font-size: 0.95rem;
  font-family: var(--font-inter);
  font-weight: 600;
  padding-right: 20px;
  text-transform: none;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary-orange);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  top: 11px; left: 0; width: 24px; height: 2px;
}

.faq-icon::after {
  top: 0; left: 11px; width: 2px; height: 24px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-question {
  color: var(--color-primary-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 30px 30px;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ================= CTA Final ================= */
.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-black-bg);
  padding: 120px 0;
}

.cta-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(216, 116, 27, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-subtitle {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= Footer ================= */
/* ================= Modern Footer ================= */
.modern-footer {
  background-color: var(--color-black-bg);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-glass-border);
}

#footer-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.footer-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(circle, rgba(216, 116, 27, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand-large {
  max-width: 400px;
}

.logo-img-footer {
  height: 140px;
  width: auto;
  margin-bottom: 24px;
}

.footer-mission {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-social-modern {
  display: flex;
  gap: 16px;
}

.social-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: var(--transition-smooth);
}

.social-icon-box:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(216, 116, 27, 0.2);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links-col h4 {
  font-family: var(--font-space);
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
}

.footer-menu, .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu a {
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-primary-orange);
  padding-left: 8px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-primary-orange);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-contact-list a {
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--color-primary-orange);
}

.footer-extra-info {
  margin-bottom: 80px;
}

.footer-stats-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-space);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-orange);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-glass-border);
}

.footer-bottom-modern {
  padding-top: 40px;
  border-top: 1px solid var(--color-glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-links a {
  transition: var(--transition-fast);
}

.legal-links a:hover {
  color: var(--color-white);
}

.separator {
  color: var(--color-glass-border);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .footer-brand-large {
    margin: 0 auto;
  }
  .footer-social-modern {
    justify-content: center;
  }
  .footer-stats-card {
    flex-direction: column;
    gap: 40px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom-modern {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .legal-links .separator {
    display: none;
  }
}

/* ================= Modals & Overlays ================= */
.lgpd-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.show {
  transform: translateY(0);
}

.lgpd-content p {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.lgpd-content a {
  color: var(--color-primary-orange);
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  color: var(--color-white);
}

.modal-header {
  padding: 30px;
  border-bottom: 1px solid var(--color-glass-border);
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
}

.modal-body h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulse-wpp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-wpp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
  15% { transform: scale(1.1) rotate(5deg); }
  30% { transform: scale(1) rotate(-5deg); }
  45% { transform: scale(1.1) rotate(5deg); }
  60% { transform: scale(1) rotate(0deg); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

.whatsapp-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #EF4444;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: var(--font-inter);
  border: 2px solid var(--color-black-bg);
  z-index: 1000;
  animation: bounce-notif 2s infinite;
}

@keyframes bounce-notif {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  border: 1px solid var(--color-glass-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* ================= Animations Utils ================= */
[data-reveal] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

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

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .hero-container-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-photo { justify-content: center; margin-top: 20px; }
  .photo-container { max-width: 450px; }
  
  .problem-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: 2; }
  .about-content { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { height: 60px; top: 10px; }
  .logo-img { height: 80px; transform: translateY(15px); }
  .section-title { font-size: 2.25rem; }
  .hero-title { font-size: 2.2rem; }
  .hero { padding-top: 130px; }
  .nav-links, .nav-cta { display: none; }
  .menu-mobile { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .badge-1, .badge-2 { transform: scale(0.8); }
  
  /* Mobile menu active state */
  .navbar.menu-open { background: var(--color-black-bg); height: 100vh; align-items: flex-start; }
  .navbar.menu-open .nav-links {
    display: flex; flex-direction: column; width: 100%; position: absolute;
    top: 80px; left: 0; padding: 24px; gap: 24px; text-align: center;
  }
  .navbar.menu-open .nav-links a { font-size: 1.25rem; }
  .navbar.menu-open .nav-cta { display: flex; position: absolute; bottom: 40px; width: 100%; justify-content: center; left: 0;}
  .navbar.menu-open .menu-mobile span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar.menu-open .menu-mobile span:nth-child(2) { opacity: 0; }
  .navbar.menu-open .menu-mobile span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Extra mobile refinements */
  .badge-1 { left: -10px; bottom: 20px; }
  .badge-2 { right: -10px; top: 20px; }
  
  .faq-question { padding: 20px; }
  .faq-answer p { padding: 0 20px 20px; }
  
  .modern-footer { padding: 60px 0 30px; }
  .logo-img-footer { height: 100px; }
  .footer-mission { font-size: 1rem; }

  .footer-bottom-modern {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .legal-links .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.85rem; }
  .hero-title { font-size: 1.75rem; }
  .impact-text { font-size: 1.8rem; }
  .footer-stats-card { padding: 20px; }
  .stat-num { font-size: 2rem; }
}
