/* ======================================
   OREN Landing Page - Dark Glassmorphism Premium
   ====================================== */

/* CSS Variables */
:root {
  /* Colors */
  --bg-dark: #0E0711;
  --bg-light-start: #f5f5f5;
  --bg-light-end: #E7E7E7;

  --purple-start: #5B027F;
  --purple-end: #C125FF;

  --text-light-heading: #FFFFFF;
  --text-light-body: #e0e0e0;
  --text-dark-heading: #000000;
  --text-dark-body: #626262;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: #e5e5e5;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --container-max-width: 1280px;
  --section-padding-mobile: 64px;
  --section-padding-desktop: 96px;

  /* Transitions */
  --transition-fast: 200ms ease-out;
  --transition-normal: 300ms ease-out;
  --transition-slow: 600ms ease-out;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
  --shadow-purple: 0 8px 32px rgba(193, 37, 255, 0.4);
  --shadow-purple-lg: 0 12px 48px rgba(193, 37, 255, 0.6);

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;
}

/* Reset e Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-light-body);
  background: var(--bg-dark);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Skip Link (Acessibilidade) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--purple-start);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Sections */
.section {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--section-padding-desktop) 0;
  }
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light-body);
}

.section-dark-alt {
  background: linear-gradient(180deg, #0E0711 0%, #1d1825 50%, #0E0711 100%);
}

.section-light {
  background: linear-gradient(180deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
  color: var(--text-dark-body);
}

.section-rounded-top {
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .section-rounded-top {
    border-radius: 64px 64px 0 0;
    margin-top: -64px;
  }
}

/* Reduced spacing between specific sections */
#prova-social {
  padding-top: 3rem;
  position: relative;
}

#prova-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--purple-start) 20%,
    var(--purple-end) 50%,
    var(--purple-start) 80%,
    transparent 100%
  );
}

#comparacao {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  #prova-social {
    padding-top: 4rem;
  }

  #comparacao {
    padding-top: 4rem;
  }
}

@media (min-width: 1024px) {
  #prova-social {
    padding-top: 5rem;
  }

  #comparacao {
    padding-top: 5rem;
  }
}

/* Reduce Comparacao section overall size */
#comparacao .section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

#comparacao .section-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  #comparacao .section-title {
    font-size: 2rem;
  }

  #comparacao .section-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  #comparacao .section-title {
    font-size: 2.25rem;
  }

  #comparacao .section-subtitle {
    font-size: 1.05rem;
  }
}

#comparacao .comparison-table-unified {
  margin: 2rem 0;
}

#comparacao .comparison-column {
  padding: 1.5rem;
}

#comparacao .comparison-header {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

#comparacao .comparison-item {
  padding: 0.75rem 0;
}

#comparacao .comparison-item span {
  font-size: 0.95rem;
}

@media (min-width: 1024px) {
  #comparacao .comparison-column {
    padding: 2rem;
  }

  #comparacao .comparison-header {
    font-size: 1.375rem;
  }

  #comparacao .comparison-item span {
    font-size: 0.975rem;
  }
}

/* Typography */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple-end);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title-dark {
  background: linear-gradient(135deg, #000000 0%, #3d3d3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-reduced {
  font-size: 1.625rem; /* Reduzido -2px para mobile */
}

.section-title-compact {
  font-size: 2rem;
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }

  .section-title-reduced {
    font-size: 2.25rem;
  }

  .section-title-compact {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }

  .section-title-reduced {
    font-size: 2.75rem;
  }

  .section-title-compact {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

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

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

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

.section-subtitle-center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 3rem;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.highlight-text {
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.highlight-bg {
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  display: inline;
  line-height: 1.6;
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

.btn-cta:focus {
  outline: 3px solid rgba(193, 37, 255, 0.5);
  outline-offset: 3px;
}

.btn-cta-large {
  padding: 0.875rem 2.1rem;
  font-size: 0.8125rem;
}

/* Stats inline embaixo do botão */
.stats-inline {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 1rem;
  justify-content: flex-start;
  align-items: center;
}

/* Centralizar stats no mobile */
@media (max-width: 767px) {
  .stats-inline {
    justify-content: center;
  }
}

.stats-inline .stat-big {
  margin-right: 0;
}

.stats-inline .stat-big:first-child {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-inline .stat-big:last-child {
  padding-left: 1.5rem;
}

/* Linha divisória acima das logos */
.clients-logos-with-border {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* Header */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 7, 17, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

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

.logo img {
  height: 24px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo:hover img {
  transform: scale(1.1);
}

.btn-cta-header {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .btn-cta-header {
    font-size: 0.8125rem;
    padding: 0.625rem 1.5rem;
  }
}

/* Hero */
.hero {
  padding-top: var(--section-padding-mobile);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: var(--section-padding-desktop);
  }
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Garantir centralização no mobile */
@media (max-width: 767px) {
  .hero-content {
    text-align: center;
  }
}

.hero-title {
  font-size: 2.75rem; /* Aumentado para mobile */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 0.875rem; /* Reduzido para mobile */
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Hero with Image Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

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

/* Centralizar hero no mobile */
@media (max-width: 767px) {
  .hero-content-left {
    text-align: center !important;
    margin: 0 auto;
  }
}

.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 1872px;
}

.hero-logo-image {
  width: 100%;
  max-width: 1872px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(193, 37, 255, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-cycle-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  pointer-events: none;
  z-index: 1;
}

.cycle-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  fill: #e0e0e0;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .cycle-text {
    font-size: 12px;
  }
}

@media (min-width: 1280px) {
  .cycle-text {
    font-size: 13px;
  }
}

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

/* Reduced font sizes (30% smaller) */
.hero-title-small {
  font-size: 1.3125rem;
}

@media (min-width: 768px) {
  .hero-title-small {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-small {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .hero-title-small {
    font-size: 2.625rem;
  }
}

.hero-subtitle-small {
  font-size: 1rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .hero-subtitle-small {
    font-size: 1.125rem;
  }
}

/* Hero Stats Section */
.hero-stats-section {
  padding: 0 0 2rem;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-align: left;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, auto);
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.stat-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.8125rem;
  }
}

/* Clients Logos Carousel */
.clients-logos {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.clients-logos-track {
  display: flex;
  gap: 5rem;
  animation: scroll-logos 42s linear infinite; /* 30% mais rápido */
  will-change: transform;
  padding: 0 2rem;
}

/* Acelerar logos no mobile (50% mais rápido) */
@media (max-width: 767px) {
  .clients-logos-track {
    animation: scroll-logos 14s linear infinite;
  }
}

.clients-logos:hover .clients-logos-track {
  animation-play-state: paused;
}

.client-logo {
  height: 51px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1);
  opacity: 0.85;
}

@media (min-width: 768px) {
  .client-logo {
    height: 61px;
  }
}

@media (min-width: 1024px) {
  .client-logo {
    height: 71px;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

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

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-light {
  background: white;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-md);
}

.card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--purple-end);
}

.card-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.85;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #000000 0%, #3d3d3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.card-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark-body);
}

/* Glass Card (Dark Sections) */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 37, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Logo Glass */
.logo-glass-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  min-height: 350px;
}

.logo-glass {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(193, 37, 255, 0.5));
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .logo-glass {
    width: 250px;
  }

  .logo-glass-container {
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .logo-glass {
    width: 300px;
  }

  .logo-glass-container {
    min-height: 450px;
  }
}

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

/* Circular Text */
.circular-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .circular-text {
    max-width: 500px;
    max-height: 500px;
  }
}

@media (min-width: 1024px) {
  .circular-text {
    max-width: 600px;
    max-height: 600px;
  }
}

.circular-text-item {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple-end);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .circular-text-item {
    font-size: 1rem;
  }
}

.circular-text-item[style*="--index: 0"] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circular-text-item[style*="--index: 1"] {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.circular-text-item[style*="--index: 2"] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circular-text-item[style*="--index: 3"] {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.pillar {
  display: flex;
  flex-direction: column;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.pillar-icon svg {
  stroke: white;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light-heading);
}

@media (min-width: 1024px) {
  .pillar-title {
    font-size: 1.5rem;
  }
}

.pillar-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light-body);
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light-body);
}

.check-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  stroke: var(--purple-end);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
  position: relative;
  margin: 3rem 0;
}

.testimonials-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .testimonials-carousel {
    grid-auto-columns: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .testimonials-carousel {
    grid-auto-columns: calc(33.333% - 1.5rem);
  }
}

.testimonial-card {
  scroll-snap-align: start;
  padding: 1.25rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 155%; /* Aspect ratio vertical (proporcional) */
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 auto 1rem;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ajustar proporção dos vídeos no mobile */
@media (max-width: 767px) {
  .video-container {
    max-width: 240px;
    padding-bottom: 140%;
  }
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover; /* Mantém proporção sem distorção */
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.video-placeholder:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.play-icon {
  color: white;
  opacity: 0.9;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.video-placeholder:hover .play-icon {
  transform: scale(1.1);
  opacity: 1;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-light-heading);
  text-align: left;
}

.testimonial-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-light-body);
  font-style: italic;
  text-align: left;
}

.testimonial-author {
  margin-top: 0.75rem;
  text-align: left;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  touch-action: manipulation; /* Previne zoom no double-tap em mobile */
}

.carousel-btn:hover {
  background: rgba(193, 37, 255, 0.3);
  border-color: var(--purple-end);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
  stroke: white;
}

.carousel-btn-prev {
  left: -24px;
}

.carousel-btn-next {
  right: -24px;
}

@media (max-width: 1023px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* Mesma cor do desktop */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
    animation: pulseRight 2s ease-in-out infinite;
  }

  .carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
  }
}

@keyframes pulseRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) translateX(4px);
    opacity: 0.8;
  }
}

@media (min-width: 1024px) {
  .testimonial-title {
    font-size: 1.125rem;
  }

  .video-container {
    max-width: 320px;
  }

  .testimonial-body {
    font-size: 1rem;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--purple-end);
  width: 24px;
  border-radius: 4px;
}

/* Comparison Table Unified */
.comparison-table-unified {
  margin: 3rem 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-column {
  padding: 2rem;
  position: relative;
}

.comparison-agency {
  background: transparent;
}

.comparison-oren {
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 1024px) {
  .comparison-agency::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 1023px) {
  .comparison-agency {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.comparison-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-light-heading);
}

.comparison-header-highlight {
  background: linear-gradient(135deg, #9ca3af 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.comparison-icon-yes {
  stroke: #4ade80;
}

.comparison-icon-no {
  stroke: #ef4444;
}

.comparison-item span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light-body);
}

/* Authority Section */
.authority-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .authority-block {
    grid-template-columns: 400px 1fr;
    gap: 4rem;
  }
}

.authority-image-simple {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.authority-image-simple img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.authority-content {
  display: flex;
  flex-direction: column;
}

.authority-tag {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple-end);
  background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .authority-tag {
    font-size: 1.125rem;
  }
}

.authority-tag-large {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .authority-tag-large {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .authority-tag-large {
    font-size: 1.375rem;
  }
}

.authority-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #000000 0%, #3d3d3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .authority-title {
    font-size: 1.875rem;
  }
}

.authority-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark-body);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .authority-text {
    font-size: 1.0625rem;
  }
}

.authority-block-single {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .authority-block-single {
    padding: 4rem;
  }
}

/* Form Section */
.section-form {
  padding-top: 4rem;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .section-form {
    padding-top: 5rem;
  }
}

/* Form Layout - 2 Columns */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .form-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.form-left {
  display: flex;
  flex-direction: column;
}

.form-left .section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .form-left .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .form-left .section-title {
    font-size: 2.5rem;
  }
}

.form-right {
  display: flex;
  align-items: start;
}

.form-compact {
  padding: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .form-compact {
    padding: 1.5rem;
  }
}

.form-compact-group {
  margin-bottom: 0.375rem;
}

.form-compact-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-light-body);
  text-align: left;
}

.form-compact-group input,
.form-compact-group select {
  width: 100%;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-compact-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-compact-group input:focus,
.form-compact-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-compact-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-compact-group select option {
  background: var(--bg-dark);
  color: white;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  min-height: 1rem;
  text-align: left;
}

.form-compact-group.error input,
.form-compact-group.error select {
  border-color: #ef4444;
}

.btn-submit-compact {
  width: 100%;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
}

.form-compact-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

  .logos-track {
    animation: none;
  }

  .logo-glass {
    animation: none;
  }
}

/* Focus Styles */
*:focus-visible {
  outline: 3px solid var(--purple-end);
  outline-offset: 3px;
}

/* Print Styles */
@media print {
  .header,
  .btn-cta,
  .carousel-btn,
  .carousel-dots {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}

