/* Definições Globais e Variáveis (apenas o necessário) */
:root {
  /* Base */
  --font-family: "Montserrat", sans-serif;
  --pad: clamp(16px, 4vw, 48px);
  --maxw: 1240px;
  --bg-light: #e8e8e8;

  /* Paleta Principal (Azuis) */
  --primary-900: #082f6b;
  --primary-800: #003e91;
  --primary-700: #1e3a8a;
  --primary-600: #0a68ff;
  --primary-500: #2f7dff;
  --accent-500: #0ea5e9;

  /* Superfícies e Bordas (Glass/UI) */
  --surface-0: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-hover: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  --shadow-primary: 0 12px 40px rgba(0, 35, 120, 0.35);

  /* Texto (apenas níveis principal, 2 e 3 para light/dark) */
  --text-principal-light: #0b1220;
  --text-2-light: #3b475d;
  --text-3-light: #7a88a3;
  --text-principal-dark: #ffffff;
  --text-2-dark: #e6ebff;
  --text-3-dark: #cdd5ff;
}

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

/* Prevenir overflow horizontal em toda a página */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  background-color: var(--bg-light);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Garantir que todas as seções não ultrapassem a largura da tela */
section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Keyframes globais usadas pelo JavaScript */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-60px) scale(0);
    opacity: 0;
  }
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* ========== Header Styles ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(8, 47, 107, 0.1);
  border-bottom: 1px solid rgba(8, 47, 107, 0.1);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header.scrolled .header__nav {
  opacity: 1;
  visibility: visible;
}

.header__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--primary-900);
  padding: 10px 0;
  z-index: 2;
  position: relative;
}

.header__logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--primary-500);
}

.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary-500);
}

.header__logo:hover {
  color: var(--primary-600);
}

.header__nav {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-2-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-600);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  z-index: 1001;
}

.nav-toggle__line {
  width: 24px;
  height: 2px;
  background: var(--primary-600);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(8, 47, 107, 0.1);
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(8, 47, 107, 0.05);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1rem var(--pad);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header__container {
    padding: 0 1rem;
  }

  .header__logo {
    gap: 6px;
    padding: 10px 0;
  }

  .header__logo-icon {
    width: 24px;
    height: 24px;
  }

  .header__logo-text {
    font-size: 1.25rem;
  }
}

/* ========== Hero Azul com SVG ========== */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 800px at 20% 20%, #1e3a8a 0%, transparent 60%),
    radial-gradient(1000px 900px at 80% 80%, #0ea5e9 0%, transparent 60%),
    linear-gradient(135deg, #0a68ff, #003e91 50%, #082f6b);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: bgShift 22s ease-in-out infinite;
  z-index: 0;
}

@keyframes bgShift {
  0% {
    background-position: 0% 50%, 100% 50%, 0% 50%;
  }
  50% {
    background-position: 100% 50%, 0% 50%, 100% 50%;
  }
  100% {
    background-position: 0% 50%, 100% 50%, 0% 50%;
  }
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 6vw, 56px);
  align-items: center;
  width: min(100%, var(--maxw));
  padding: var(--pad);
}

.hero__left h1 {
  font-size: clamp(2rem, 3.5vw + 1rem, 4rem);
  line-height: 1.05;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  color: var(--text-2-dark);
}

.hero__left p {
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.25rem);
  color: #e6ebff;
  opacity: 0.95;
  margin: 0 0 20px 0;
  max-width: 60ch;
}

.hero__cta {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
  animation: ctaPulse 3s ease-in-out infinite, ctaFadeInUp 0.8s ease-out;
}

.hero__cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: ctaShine 4s ease-in-out infinite;
  transform: rotate(45deg);
}

.hero__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.25);
}

.hero__cta:hover::after {
  opacity: 1;
}

.hero__cta:active {
  transform: translateY(-1px) scale(1.02);
  animation: ctaClick 0.2s ease;
}

@keyframes ctaClick {
  0%,
  100% {
    transform: translateY(-1px) scale(1.02);
  }
  25% {
    transform: translateY(-1px) scale(1.02) rotate(1deg);
  }
  75% {
    transform: translateY(-1px) scale(1.02) rotate(-1deg);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2), 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@keyframes ctaShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

@keyframes ctaFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-highlight:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.hero__right {
  display: grid;
  place-items: center;
}

.logo-wrap {
  width: min(70vmin, 560px);
  max-width: 100%;
  aspect-ratio: 1/1;
  animation: floaty 10s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(0, 35, 120, 0.35));
}

.logo-rotate {
  width: 100%;
  height: 100%;
  will-change: transform;
  contain: layout style paint;
}

/* Animação gerenciada via JavaScript para sincronizar com scroll */

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

.logo-color {
  color: #ffffff;
  animation: whitePulse 9s ease-in-out infinite;
}

@keyframes whitePulse {
  0% {
    color: #ffffff;
  }
  25% {
    color: #f8fbff;
  }
  50% {
    color: #eef2ff;
  }
  75% {
    color: #f5f7ff;
  }
  100% {
    color: #ffffff;
  }
}

@media (max-width: 900px) {
  .hero__container {
    display: grid;
    grid-template-areas:
      "title"
      "svg"
      "text"
      "button";
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero__left {
    display: contents;
  }

  .hero__left h1 {
    grid-area: title;
    margin-bottom: 0;
  }

  .hero__left p {
    grid-area: text;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .hero__left .hero__cta {
    grid-area: button;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .hero__right {
    grid-area: svg;
  }

  .logo-wrap {
    width: min(68vw, 520px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .logo-wrap,
  .logo-color,
  .hero__cta,
  .hero__cta::before {
    animation: none !important;
  }

  .hero__cta {
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .hero__cta:hover {
    transform: translateY(-2px);
  }
}

/* ========== Seção de Serviços (escopo pelo ID) ========== */
#servicos {
  background: #fafafa;
  padding: calc(var(--pad) * 4) var(--pad);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

#servicos .section__container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  max-width: 100%;
}

#servicos .section__title {
  font-size: clamp(1.75rem, 1.5vw + 1.25rem, 2.5rem);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  text-align: center;
  /* Gradiente animado semelhante ao BG da hero */
  background: linear-gradient(135deg, var(--primary-600), var(--accent-500), var(--primary-800));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGradientShift 16s ease-in-out infinite;
}

@keyframes titleGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#servicos .section__subtitle {
  color: var(--text-3-light);
  opacity: 0.9;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 70ch;
  font-size: 1.05rem;
}

/* Carousel Container */
#servicos .carousel-container {
  position: relative;
  margin-top: clamp(48px, 6vw, 64px);
  overflow: hidden;
  padding-bottom: 80px;
}

/* Swiper Container */
#servicos .servicesSwiper {
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 24px;
  overflow: hidden;
}

#servicos .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-bottom: 10px;
  max-width: 100%;
}

#servicos .swiper-slide {
  height: auto;
  display: flex;
}

/* Otimização para touch no mobile */
#servicos .servicesSwiper {
  touch-action: pan-y pinch-zoom;
}

/* Animação suave para o slide ativo */
#servicos .swiper-slide-active-custom .feature__card {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(8, 47, 107, 0.12);
}

/* Melhoria visual durante o arrasto */
#servicos .servicesSwiper.swiper-grabbing {
  cursor: grabbing;
}

#servicos .servicesSwiper.swiper-grabbing .feature__card {
  pointer-events: none;
}

/* Transições suaves */
#servicos .swiper-slide {
  transition: opacity 0.3s ease;
}

#servicos .swiper-slide-visible {
  opacity: 1;
}

/* Carousel Navigation */
#servicos .carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

#servicos .carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--surface-0);
  border: 2px solid var(--primary-600);
  color: var(--primary-600);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(10, 104, 255, 0.15);
  position: static;
}

#servicos .carousel-btn:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 104, 255, 0.25);
}

#servicos .carousel-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 12px rgba(10, 104, 255, 0.1);
}

#servicos .carousel-btn.swiper-button-disabled:hover {
  background: var(--surface-0);
  color: var(--primary-600);
}

/* Reset do estilo padrão do Swiper */
#servicos .carousel-btn::after {
  content: none;
}

/* Swiper Pagination */
#servicos .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  margin-top: 32px;
  padding-top: 16px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#servicos .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(10, 104, 255, 0.3);
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

#servicos .swiper-pagination-bullet-active {
  background: var(--primary-600);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(10, 104, 255, 0.4);
}

#servicos .swiper-pagination-bullet:hover {
  background: var(--primary-600);
  transform: scale(1.15);
}

#servicos .feature__card {
  position: relative;
  overflow: hidden;
  background: var(--surface-0);
  border: 1px solid rgba(8, 47, 107, 0.08);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: 0 8px 24px rgba(8, 47, 107, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-height: 420px;
}

#servicos .feature__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(8, 47, 107, 0.16);
  border-color: rgba(8, 47, 107, 0.2);
}

/* Card destacado */
#servicos .feature__card--highlight {
  border: 2px solid var(--primary-600);
  background: linear-gradient(135deg, var(--surface-0) 0%, rgba(10, 104, 255, 0.02) 100%);
}

#servicos .feature__card--highlight::before {
  height: 6px;
}

/* Badge "Mais Popular" */
#servicos .feature__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(10, 104, 255, 0.3);
}

/* Faixa de destaque superior com gradiente animado */
#servicos .feature__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500), var(--primary-800));
  background-size: 200% 100%;
  animation: stripeFlow 8s ease-in-out infinite;
}

@keyframes stripeFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#servicos .feature__icon {
  font-size: 2.8rem;
  margin: 0;
  line-height: 1;
}

#servicos .feature__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

#servicos .feature__title {
  font-weight: 700;
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--primary-900);
}

#servicos .feature__desc {
  margin: 0 0 20px 0;
  color: var(--text-2-light);
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

/* Lista de benefícios nos cards */
#servicos .feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

#servicos .feature__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--text-2-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

#servicos .feature__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary-600);
  font-weight: bold;
  font-size: 1rem;
}

/* Carousel Responsive Styles */
@media (max-width: 1200px) {
  #servicos .carousel-container {
    padding-bottom: 50px;
  }
}

@media (max-width: 900px) {
  #servicos .feature__card {
    min-height: 400px;
  }

  #servicos .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  #servicos .carousel-nav {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  #servicos .feature__badge {
    right: 16px;
    padding: 4px 12px;
    font-size: 0.75rem;
  }

  #servicos .feature__desc {
    font-size: 0.95rem;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  #servicos .carousel-nav {
    gap: 12px;
    margin-top: 32px;
  }

  #servicos .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  #servicos .swiper-pagination {
    margin-top: 32px !important;
    padding-top: 24px !important;
    gap: 14px !important;
    min-height: 40px;
  }

  #servicos .swiper-pagination-bullet {
    width: 11px !important;
    height: 11px !important;
  }

  #servicos .swiper-pagination-bullet-active {
    transform: scale(1.4) !important;
  }

  #servicos .carousel-container {
    padding-bottom: 56px;
  }

  #servicos .feature__card {
    margin-bottom: 20px;
  }

  #servicos .servicesSwiper {
    padding-bottom: 32px;
  }
}

/* Ajustes específicos para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 380px) {
  #servicos .carousel-container {
    padding-bottom: 68px;
  }

  #servicos .servicesSwiper {
    padding-bottom: 40px;
  }

  #servicos .swiper-pagination {
    margin-top: 36px !important;
    padding-top: 28px !important;
    gap: 16px !important;
    min-height: 44px;
  }

  #servicos .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }

  #servicos .swiper-pagination-bullet-active {
    transform: scale(1.5) !important;
  }

  #servicos .feature__card {
    margin-bottom: 24px;
    min-height: 400px;
  }

  #servicos .carousel-nav {
    margin-top: 36px;
  }
}

/* ========== Botão de Conversão na Seção de Serviços ========== */
#servicos .conversion-cta-section {
  margin-top: clamp(64px, 8vw, 96px);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 50%, var(--primary-800) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease-in-out infinite;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 104, 255, 0.25);
}

#servicos .conversion-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 600px at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#servicos .conversion-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#servicos .conversion-cta-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  font-weight: 700;
  color: white;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#servicos .conversion-cta-subtitle {
  font-size: clamp(1rem, 0.8vw + 0.9rem, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#servicos .conversion-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.2rem);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: conversionPulse 4s ease-in-out infinite;
}

#servicos .conversion-cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  animation: conversionShine 5s ease-in-out infinite;
  transform: rotate(45deg);
}

#servicos .conversion-cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

#servicos .conversion-cta-button:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

#servicos .conversion-cta-button:hover::after {
  opacity: 1;
}

#servicos .conversion-cta-button:active {
  transform: translateY(-2px) scale(1.05);
  animation: conversionClick 0.25s ease;
}

@keyframes conversionClick {
  0%,
  100% {
    transform: translateY(-2px) scale(1.05);
  }
  50% {
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes conversionPulse {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes conversionShine {
  0% {
    transform: translateX(-150%) translateY(-150%) rotate(45deg);
  }
  50% {
    transform: translateX(150%) translateY(150%) rotate(45deg);
  }
  100% {
    transform: translateX(-150%) translateY(-150%) rotate(45deg);
  }
}

#servicos .conversion-cta-text {
  position: relative;
  z-index: 1;
}

#servicos .conversion-cta-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

#servicos .conversion-cta-button:hover .conversion-cta-icon {
  transform: translateX(4px);
}

/* Responsividade para o botão de conversão */
@media (max-width: 768px) {
  #servicos .conversion-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #servicos .feature__desc {
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    max-width: 100%;
  }

  #servicos .conversion-cta-section {
    margin-top: clamp(48px, 8vw, 64px);
    padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 32px);
    border-radius: 20px;
  }

  #servicos .conversion-cta-button {
    padding: 12px 24px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #servicos .conversion-cta-section,
  #servicos .conversion-cta-button,
  #servicos .conversion-cta-button::before {
    animation: none !important;
  }

  #servicos .conversion-cta-button {
    transition: transform 0.2s ease, background 0.2s ease;
  }

  #servicos .conversion-cta-button:hover {
    transform: translateY(-2px);
  }

  #servicos .conversion-cta-icon {
    transition: transform 0.2s ease;
  }
}

/* ========== Seção de Testemunhos - WhatsApp Style ========== */
#testemunhos {
  background: #f8fafc;
  background-image: radial-gradient(circle at 25% 25%, rgba(37, 211, 102, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2325d366' fill-opacity='0.02'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: calc(var(--pad) * 3) var(--pad);
  position: relative;
  overflow: hidden;
}

#testemunhos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.02) 0%,
    rgba(16, 185, 129, 0.03) 50%,
    rgba(37, 211, 102, 0.02) 100%
  );
  pointer-events: none;
}

#testemunhos .section__container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#testemunhos .section__title {
  font-size: clamp(1.75rem, 1.5vw + 1.25rem, 2.5rem);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-500), var(--primary-800));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGradientShift 16s ease-in-out infinite;
}

#testemunhos .section__subtitle {
  color: var(--text-3-light);
  opacity: 0.9;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 70ch;
  font-size: 1.05rem;
}

/* Container principal do WhatsApp */
.whatsapp-container {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  animation: phoneAppear 0.8s ease-out;
}

/* Ajustes completos para tablets - melhor uso do espaço disponível */
@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-container {
    max-width: 700px;
    margin: 0 auto;
  }

  .whatsapp-header {
    padding: 18px 24px;
  }

  .oraculo-avatar {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .whatsapp-title {
    font-size: 17px;
  }

  .whatsapp-status {
    font-size: 13px;
  }

  .whatsapp-chat {
    padding: 24px 20px 20px;
    min-height: 420px;
    gap: 16px;
    align-items: flex-start;
  }

  .message-content {
    width: auto;
    flex: 0 1 auto;
    max-width: min(560px, calc(100% - 72px));
    /* Expand the bubbles on tablets to avoid the large right-side gap */
  }

  .message-container {
    gap: 10px;
    margin-bottom: 16px;
  }

  .message-container.left {
    margin-left: 12px;
  }

  .message-container.right {
    margin-right: 12px;
    align-self: flex-end;
  }

  .message-avatar {
    width: 36px;
    height: 36px;
  }

  .oraculo-avatar-small {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .message-bubble {
    padding: 16px 20px 20px;
  }

  .message-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .message-info {
    margin-top: 8px;
  }

  .message-author {
    font-size: 12px;
  }

  .message-time {
    font-size: 12px;
  }

  .whatsapp-action {
    max-width: 700px;
    padding: 20px 24px 24px;
  }

  .whatsapp-cta {
    padding: 16px 24px;
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .whatsapp-container {
    max-width: min(860px, 70vw);
  }

  .whatsapp-chat {
    min-height: 480px;
    gap: 18px;
  }

  .message-bubble {
    padding: 18px 24px 24px;
  }

  .message-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .message-info {
    margin-top: 10px;
  }

  .message-author,
  .message-time {
    font-size: 12px;
  }

  .whatsapp-action {
    max-width: min(860px, 70vw);
    padding: 24px;
  }

  .whatsapp-cta {
    padding: 18px 26px;
    font-size: 15px;
  }
}

@keyframes phoneAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header do WhatsApp */
.whatsapp-header {
  background: #075e54;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 16px 20px;
  position: relative;
}

.whatsapp-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #128c7e, #075e54);
  background-size: 200% 100%;
  animation: headerGradient 8s ease-in-out infinite;
}

@keyframes headerGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.whatsapp-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oraculo-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-header-info {
  flex: 1;
}

.whatsapp-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.whatsapp-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.whatsapp-status::before {
  content: "●";
  color: #25d366;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Chat area */
.whatsapp-chat {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4c5b0' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-27.614 22.386-50 50-50s50 22.386 50 50-22.386 50-50 50-50-22.386-50-50zm25 0c0 13.807 11.193 25 25 25s25-11.193 25-25-11.193-25-25-25-25 11.193-25 25z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 24px 24px 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Container de mensagem */
.message-container {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.message-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.message-container.left {
  justify-content: flex-start;
  margin-left: 4px;
}

.message-container.left.animate-in {
  animation: messageSlideInLeft 0.6s ease-out forwards;
}

.message-container.right {
  justify-content: flex-end;
  flex-direction: row-reverse;
  margin-right: 4px;
  margin-left: auto;
}

.message-container.right.animate-in {
  animation: messageSlideInRight 0.6s ease-out forwards;
}

.message-container:nth-child(1) {
  transition-delay: 0.1s;
}
.message-container:nth-child(2) {
  transition-delay: 0.3s;
}
.message-container:nth-child(3) {
  transition-delay: 0.5s;
}
.message-container:nth-child(4) {
  transition-delay: 0.7s;
}

@keyframes messageSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes messageSlideInRight {
  from {
    opacity: 0;
    transform: translateX(30px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Avatar nas mensagens */
.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  contain: layout;
}

.message-avatar:hover {
  transform: scale(1.1);
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.oraculo-avatar-small {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Conteúdo da mensagem */
.message-content {
  flex: 0 1 auto;
  width: auto;
  max-width: calc(100% - 72px);
}

.message-bubble {
  max-width: 100%;
}

/* Balões de conversa */
.message-bubble {
  position: relative;
  padding: 12px 16px 16px;
  border-radius: 18px;
  margin-bottom: 4px;
  word-wrap: break-word;
  animation: bubbleAppear 0.3s ease-out;
}

@keyframes bubbleAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mensagens recebidas */
.message-bubble.received {
  background: #ffffff;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.message-bubble.received::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  border-left: none;
  border-bottom: none;
}

/* Mensagens enviadas */
.message-bubble.sent {
  background: linear-gradient(135deg, #dcf8c6, #d1f2c0);
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-bubble.sent::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #dcf8c6;
  border-bottom-color: #dcf8c6;
  border-right: none;
  border-bottom: none;
}

/* Texto da mensagem */
.message-text {
  margin: 0 0 8px 0;
  color: #303030;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 400;
}

/* Informações da mensagem */
.message-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.message-author {
  font-size: 11px;
  color: #667781;
  font-weight: 500;
  flex: 1;
}

.message-time {
  font-size: 11px;
  color: #667781;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Botão de ação do WhatsApp */
.whatsapp-action {
  max-width: 420px;
  margin: 4rem auto;
  padding: 16px 20px 20px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta:hover::before {
  left: 100%;
}

.whatsapp-cta:active {
  transform: translateY(0);
}

.whatsapp-text {
  flex: 1;
  text-align: center;
}

/* Responsividade */

@media (max-width: 768px) {
  .whatsapp-container {
    max-width: 100%;
    margin: 0 16px;
  }

  .whatsapp-chat {
    padding: 16px 12px 12px;
    min-height: 360px;
  }

  .message-text {
    font-size: 13px;
  }

  .whatsapp-action {
    max-width: 100%;
    margin: 2rem 16px;
  }

  .whatsapp-cta {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .whatsapp-container {
    margin: 0 8px;
    border-radius: 16px;
  }

  .whatsapp-header {
    padding: 12px 16px;
  }

  .whatsapp-title {
    font-size: 15px;
  }

  .whatsapp-status {
    font-size: 11px;
  }

  .message-bubble {
    padding: 10px 14px 14px;
  }

  .message-text {
    font-size: 12px;
  }

  .message-author {
    font-size: 10px;
  }

  .message-time {
    font-size: 10px;
  }

  .whatsapp-action {
    margin: 2rem 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-container,
  .message-bubble,
  .oraculo-avatar,
  .whatsapp-header::before,
  .whatsapp-status::before {
    animation: none !important;
  }

  .message-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    animation: none !important;
  }

  .message-avatar,
  .whatsapp-cta {
    transition: transform 0.2s ease;
  }

  .whatsapp-cta:hover {
    transform: translateY(-1px);
  }
}

/* ========== Seção de Oráculos ========== */
#oraculos {
  background: linear-gradient(
    135deg,
    var(--primary-900) 0%,
    var(--primary-800) 25%,
    var(--primary-700) 50%,
    var(--primary-600) 75%,
    var(--accent-500) 100%
  );
  background-size: 100% 100%;
  animation: oracleGradient 20s ease-in-out infinite;
  padding: clamp(10px, 6vw, 20px) 0;
  position: relative;
  overflow: hidden;
}

#oraculos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes oracleGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.oraculos__container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.oraculos__content {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
}

.oraculos__marquee {
  width: 100%;
  overflow: hidden;
}

.oraculos__track {
  display: flex;
  gap: clamp(60px, 10vw, 120px);
  white-space: nowrap;
  will-change: transform;
  contain: layout style;
  /* Animação será aplicada dinamicamente pelo JavaScript */
}

/* Fallback caso o JavaScript não carregue */
@media (scripting: none) {
  .oraculos__track {
    animation: marqueeScrollFallback 60s linear infinite;
  }
}

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

.oraculo__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-principal-dark);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.oraculo__item:hover {
  opacity: 1;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* Responsividade para oráculos */
@media (max-width: 768px) {
  #oraculos {
    padding: clamp(32px, 6vw, 60px) 0;
  }

  .oraculos__track {
    gap: clamp(48px, 8vw, 80px);
    animation-duration: 25s;
  }

  .oraculo__item {
    font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.2rem);
  }
}

@media (max-width: 480px) {
  .oraculos__track {
    gap: clamp(40px, 6vw, 60px);
    animation-duration: 15s;
  }
}

@media (prefers-reduced-motion: reduce) {
  #oraculos,
  .oraculos__track {
    animation: none !important;
  }

  .oraculos__track {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .oraculo__item {
    white-space: normal;
    text-align: center;
    max-width: 300px;
  }
}

/* ========== Seção Impactante para Fechar Negócio ========== */
#fechar-negocio {
  background: linear-gradient(
    135deg,
    var(--primary-900) 0%,
    var(--primary-800) 25%,
    var(--primary-700) 50%,
    var(--primary-600) 75%,
    var(--accent-500) 100%
  );
  background-size: 200% 200%;
  animation: fecharNegocioGradient 15s ease-in-out infinite;
  padding: calc(var(--pad) * 4) var(--pad);
  position: relative;
  overflow: hidden;
  color: white;
}

#fechar-negocio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 800px at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes fecharNegocioGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#fechar-negocio .section__container {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

#fechar-negocio .section__title {
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titlePulse 12s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

#fechar-negocio .section__subtitle {
  font-size: clamp(1.1rem, 0.8vw + 0.9rem, 1.4rem);
  margin: 0 auto 48px;
  max-width: 60ch;
  line-height: 1.6;
  opacity: 0.95;
}

.fechar-negocio-content {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

.fechar-negocio-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: 800px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
}

.benefit-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.fechar-negocio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: 600px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: numberGlow 10s ease-in-out infinite;
}

@keyframes numberGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.fechar-negocio-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1.1rem, 0.8vw + 0.9rem, 1.3rem);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.fechar-negocio-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.fechar-negocio-cta:active {
  transform: translateY(-1px) scale(1.01);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-icon {
  font-size: 1.4em;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.fechar-negocio-cta:hover .cta-icon {
  transform: translateX(6px);
}

/* Responsividade para a seção de fechar negócio */
@media (max-width: 768px) {
  #fechar-negocio {
    padding: calc(var(--pad) * 3) var(--pad);
  }

  .fechar-negocio-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-item {
    padding: 16px;
    font-size: 1rem;
  }

  .fechar-negocio-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .fechar-negocio-cta {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fechar-negocio-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .fechar-negocio-cta {
    padding: 14px 28px;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #fechar-negocio {
    animation: none !important;
  }

  .benefit-item,
  .stat-item {
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .benefit-item:hover,
  .stat-item:hover {
    transform: translateY(-2px);
  }

  .cta-icon {
    transition: transform 0.2s ease;
  }
}
