/* ==========================================
   HOME PAGE STYLES - Next.js Style
   ========================================== */

/* Background Effects - Next.js Style */
.page {
  position: relative;
}

/* Background Pattern */
.page::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Ambient Light Effects */
.main-content::before,
.main-content::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.main-content::before {
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(251, 191, 36, 0.05); /* amber-400/5 */
}

.main-content::after {
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(96, 165, 250, 0.05); /* blue-400/5 */
}

/* Hero Section with Carousel */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background Carousel Container */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video Background Container */
.hero__video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Video Background */
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  filter: brightness(0.65) contrast(1.15) saturate(1.05);
}

/* Active video */
.hero__video.active {
  opacity: 1;
}

/* Carousel Images */
.hero__carousel {
  position: absolute;
  inset: 0;
  display: none; /* Escondido - usando vídeo ao invés do carousel */
}

.hero__carousel-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0.3px) brightness(0.65) contrast(1.15) saturate(1.05);
}

.hero__carousel-image.active {
  opacity: 1;
  transform: scale(1);
}

/* Background Overlays - Professional Style */
.hero__background-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(15, 23, 42, 0.4) 0%, 
    rgba(15, 23, 42, 0.25) 50%, 
    rgba(0, 0, 0, 0.5) 100%);
}

.hero__overlay-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
    rgba(30, 58, 138, 0.08) 0%,
    transparent 50%,
    rgba(15, 23, 42, 0.12) 100%);
}

/* Geometric Pattern */
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='geometric' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23geometric)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Ambient Light Elements */
.hero__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__light--top {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero__light--bottom {
  position: absolute;
  bottom: 33%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  min-height: 100vh;
  max-width: 80rem;
  margin: 0 auto;
}

/* Title */
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__title-main {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero__title-highlight {
  display: block;
  background: linear-gradient(to right, var(--color-brand-light), var(--color-brand-tertiary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

/* Divider Line */
.hero__divider {
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  margin: 2rem auto;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  max-width: 48rem;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Description */
.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  max-width: 42rem;
  line-height: 1.6;
  font-weight: 300;
}

/* CTA Button */
.hero__cta {
  margin-bottom: 4rem;
}

.hero__cta .btn--primary {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  background: linear-gradient(to right, var(--color-brand-primary), var(--color-brand-secondary));
  border: 1px solid rgba(75, 124, 204, 0.3);
  box-shadow: 0 0 0 0 rgba(75, 124, 204, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__cta .btn--primary:hover {
  background: linear-gradient(to right, var(--color-brand-darker), var(--color-brand-primary));
  border-color: rgba(75, 124, 204, 0.5);
  box-shadow: 0 20px 40px rgba(75, 124, 204, 0.35);
  transform: translateY(-2px);
}

/* Features Cards with Blur Effect - Clean and Serene */
.hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 64rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.hero__feature {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Feature Icon */
.hero__feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__feature:hover .hero__feature-icon {
  transform: scale(1.1);
}

.hero__feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(252, 211, 77, 0.9);
}

/* Feature Title */
.hero__feature-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Feature Description */
.hero__feature-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Carousel Indicators */
.hero__indicators {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* Escondido - usando vídeo ao invés do carousel */
  gap: 0.75rem;
  z-index: 10;
}

.hero__indicator {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hero__indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero__indicator.active {
  background: var(--color-brand-secondary);
  transform: scale(1.25);
  box-shadow: 0 0 20px rgba(91, 140, 217, 0.5);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

.hero__scroll-indicator {
  width: 2rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
}

.hero__scroll-dot {
  width: 0.25rem;
  height: 1rem;
  background: linear-gradient(to bottom, var(--color-brand-secondary), rgba(255, 255, 255, 0.6));
  border-radius: 0.125rem;
  margin-top: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Services Preview Section - More Serene */
.services-preview {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1d4ed8);
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(251, 191, 36, 0.3) 50%,
    transparent 100%);
}

.services-preview__header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-preview__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
}

.services-preview__title-highlight {
  background: linear-gradient(to right, var(--color-brand-tertiary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.services-preview__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Service Preview Cards - Cleaner and More Spacious */
.services-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

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

.service-preview-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-preview-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-preview-card__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(251, 191, 36, 0.08);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: transform 0.5s ease;
}

.service-preview-card:hover .service-preview-card__icon {
  transform: scale(1.05);
}

.service-preview-card__icon svg {
  color: var(--color-brand-secondary);
  opacity: 0.9;
}

.service-preview-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.service-preview-card__description {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 0;
  text-align: center;
  font-weight: 300;
  font-size: 1rem;
}

.service-preview-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-secondary);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.service-preview-card__link:hover {
  gap: 0.75rem;
}

.service-preview-card__link svg {
  width: 1rem;
  height: 1rem;
}

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

/* Benefits Section - Por Que Estar Presente */
.benefits-section {
  padding: 7rem 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(251, 191, 36, 0.3) 50%,
    transparent 100%);
}

.benefits-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.benefits-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.benefits-section__title-highlight {
  background: linear-gradient(to right, var(--color-brand-tertiary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.benefits-section__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.benefits-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 0 1rem;
}

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

.benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .benefit-card__icon {
  background: rgba(251, 191, 36, 0.25);
  transform: scale(1.05);
}

.benefit-card__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.benefit-card__icon svg {
  color: var(--color-brand-secondary);
  opacity: 0.9;
}

.benefit-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-card__description {
  color: #64748b;
  line-height: 1.75;
  font-weight: 300;
  font-size: 1rem;
}

/* How It Works Section - Same colors as Next.js */
.how-it-works {
  padding: 7rem 0;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

/* Variante com fundo neutro claro */
.how-it-works--beige {
  background: #f8fafc;
}

.how-it-works--beige .how-it-works__title {
  color: #1e293b; /* slate-800 */
}

.how-it-works--beige .how-it-works__subtitle {
  color: #475569; /* slate-600 */
}

.how-it-works--beige .step-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.how-it-works--beige .step-card:hover {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-4px);
}

.how-it-works--beige .step-card__title {
  color: #1e293b; /* slate-800 */
}

.how-it-works--beige .step-card__description {
  color: #475569; /* slate-600 */
}

.how-it-works--beige .step-card__number {
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-weight: 400;
}

.how-it-works--beige .support-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.how-it-works--beige .support-box__title {
  color: #1e293b; /* slate-800 */
}

.how-it-works--beige .support-box__description {
  color: #475569; /* slate-600 */
}

.how-it-works--beige .support-box__icon {
  background: #f1f5f9;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 5rem;
}

.how-it-works__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-neutral-900);
  margin-bottom: 1.5rem;
}

.how-it-works__title-highlight {
  background: linear-gradient(to right, var(--color-brand-primary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.how-it-works__subtitle {
  font-size: 1.125rem;
  color: var(--color-neutral-600);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .how-it-works__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.step-card__number {
  width: 4rem;
  height: 4rem;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  font-weight: 300;
  color: #475569;
}

.step-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-neutral-900);
  margin-bottom: 1rem;
}

.step-card__description {
  font-size: 1rem;
  color: var(--color-neutral-600);
  line-height: 1.75;
  font-weight: 300;
}

/* Support Box */
.how-it-works__support {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.support-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.support-box__icon {
  width: 4rem;
  height: 4rem;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.support-box__icon svg {
  color: #475569;
}

.support-box__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 1rem;
}

.support-box__description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.support-box .btn--primary {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
  box-shadow: 0 4px 12px rgba(75, 124, 204, 0.3);
}

.support-box .btn--primary:hover {
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 8px 20px rgba(75, 124, 204, 0.4);
}

/* About Preview Section - Same colors as Next.js */
.about-preview {
  padding: 7rem 0;
  background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
}

/* Variante com fundo azul gradiente */
.about-preview--amber {
  background: linear-gradient(180deg, #4B7CCC 0%, #5B8CD9 30%, #7BA5E3 60%, #9BBDEC 100%);
}

.about-preview--amber .about-preview__title {
  color: white;
}

.about-preview--amber .about-preview__title-highlight {
  color: #FFF8DC; /* Tom mais claro de creme */
  -webkit-text-fill-color: #FFF8DC;
}

.about-preview--amber .about-preview__description {
  color: rgba(255, 255, 255, 0.95);
}

.about-preview--amber .about-preview__stat-number {
  color: white;
}

.about-preview--amber .about-preview__stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.about-preview--amber .btn--secondary {
  background: white;
  color: #CC8D1A;
  border-color: white;
}

.about-preview--amber .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #B77A15;
}

.about-preview--amber .about-preview__stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
}

.about-preview__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-preview__text {
  padding: 0 1rem;
}

.about-preview__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-neutral-900);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-preview__title-highlight {
  background: linear-gradient(to right, var(--color-brand-primary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.about-preview__description {
  font-size: 1.125rem;
  color: var(--color-neutral-600);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

/* Stats */
.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-neutral-200);
  border-bottom: 1px solid var(--color-neutral-200);
}

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

.about-preview__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.about-preview__stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-preview__cta {
  margin-top: 2rem;
}

.about-preview__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-preview__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-preview__image:hover .about-preview__img {
  transform: scale(1.05);
}

/* CTA Section - Same colors as Next.js */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(251, 191, 36, 0.3) 50%,
    transparent 100%);
}

.cta-section__content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.cta-section__icon {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-section__icon svg {
  color: var(--color-brand-secondary);
  opacity: 0.9;
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-section__title-highlight {
  background: linear-gradient(to right, var(--color-brand-tertiary), var(--color-brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}

.cta-section__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 300;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-section__info {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section__info p {
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer - Next.js Style */
.footer {
  position: relative;
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 4rem 0 2rem;
}

/* Decorative Elements */
.footer__decorative {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.footer__decorative-light--top {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

.footer__decorative-light--bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

/* Footer Content Grid */
.footer__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

/* Main Section with Logo */
.footer__main {
  max-width: 32rem;
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__logo-img {
  height: 3rem;
  width: auto;
  filter: brightness(0.9) drop-shadow(0 2px 8px rgba(251, 191, 36, 0.2));
}

.footer__description {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Status Indicator */
.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}

.footer__status-indicator {
  width: 0.5rem;
  height: 0.5rem;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.footer__status-indicator--amber {
  background: var(--color-brand-secondary);
}

.footer__status-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Links Section */
.footer__links-title,
.footer__info-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__links-underline,
.footer__info-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--color-brand-secondary), var(--color-brand-primary));
  border-radius: 9999px;
}

.footer__links-list,
.footer__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--color-brand-secondary);
  transform: translateX(4px);
}

.footer__link-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.footer__link:hover .footer__link-icon {
  transform: scale(1.1);
}

/* Newsletter Section */
.footer__newsletter {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer__newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer__newsletter-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__newsletter-text {
  text-align: left;
}

@media (min-width: 768px) {
  .footer__newsletter-text {
    text-align: left;
  }
}

.footer__newsletter-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__newsletter-description {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 300;
}

/* Separator */
.footer__separator {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-bottom: 2rem;
  position: relative;
}

.footer__separator-line {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(251, 191, 36, 0.3) 50%,
    transparent 100%);
}

/* Bottom Section */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  text-align: center;
}

@media (min-width: 768px) {
  .footer__copyright {
    text-align: left;
  }
}

.footer__copyright p {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer__credits svg {
  color: var(--color-brand-secondary);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .hero__content {
    padding: 5rem 1rem 3rem;
  }
  
  .hero__indicators {
    bottom: 4rem;
  }
  
  .hero__scroll {
    bottom: 1rem;
  }
  
  /* Video responsivo em mobile */
  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-preview__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

