/* Variáveis Globais */
:root {
  --bg-color: rgb(26, 26, 26);
  --card-bg: #1a1a1a;
  --accent-color: #ff5e00;
  --text-light: #ffffff;
  --text-muted: #888888;
  --font-main: "Sora", sans-serif;
  --border-radius: 24px;
}

/* Resets e Configurações Básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  background-color: rgb(26, 26, 26);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

/* Focos de luz suaves no fundo */
.bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(#f99d9f 0%, #9199ff 100%);
  opacity: 0.2;
  filter: blur(80px);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--hero-left {
  top: 10%;
  left: -80px;
}

.bg-glow--hero-right {
  top: 55%;
  right: -120px;
}

.bg-glow--section {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.bg-glow--edge-left {
  top: 0%;
  left: -100px; /* metade para fora da tela */
}

.bg-glow--edge-right {
  top: 40%;
  right: -300px; /* metade para fora da tela */
}

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

a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Estrutura de Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-why {
  padding: 60px 0;
}

@media (max-width: 900px) {
  .section-why {
    padding: 0;
  }
}

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

@media (max-width: 900px) {
  .section-depoimentos {
    padding: 0 0 60px;
  }
}

.section-padding {
  padding: 120px 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Bloco principal: imagem decorativa fixa à esquerda */
.section-main-content {
  position: relative;
  isolation: isolate;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  transition:
    transform 0.3s ease,
    background-color 0.3s,
    border-color 0.3s,
    color 0.3s;
}

.btn-primary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #fff;
  background: transparent;
}

/* (Removido pseudo-círculo/seta; todos os botões usam a estrutura .btn-icon) */

/* Botão com ícone (usado no hero) */
.btn-icon {
  padding: 8px 24px 8px 8px; /* Espaço para o círculo interno */
  gap: 12px;
}
.btn-icon .icon-circle {
  width: 36px;
  height: 36px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.btn-icon .icon-arrow {
  position: relative;
  width: 12px;
  height: 2px;
  background-color: #fff;
  border-radius: 999px;
}
.btn-icon .icon-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.btn-icon:hover .icon-circle {
  transform: translateX(4px);
  background-color: transparent;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #ffffff;
  color: #fff;
}

/* Header */
header {
  position: absolute; /* Para flutuar sobre o Hero */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  color: var(--accent-color);
}

/* =========================================
           ANIMAÇÕES DE ENTRADA DO HERO
           ========================================= */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-giant-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-left {
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-right {
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-backdrop {
  animation: hero-fade-in 1.2s ease 0s both;
}

.hero-giant-text {
  animation: hero-giant-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* =========================================
           HERO BANNER ATUALIZADO
           ========================================= */
.hero-wrapper {
  padding: 20px; /* Margem externa como no site original */
  position: relative;
  background-color: #1a1a1a;
  overflow: visible;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-backdrop-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% 40%;
  background-color: #1a1a1a;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.hero-backdrop-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Ajuste do slide 2 (zoom/posição no desktop e mobile) */
.hero-backdrop-slide--bottom-boost {
  background-size: 70%;
  background-repeat: no-repeat;
  background-color: #000;
}

@media (max-width: 900px) {
  .hero-backdrop-slide--bottom-boost {
    background-position: 60% 90%;
    background-size: 140%;
  }
}

.hero {
  position: relative;
  height: 85vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 80px;
}

/* Gradiente suave para escurecer as laterais e dar leitura ao texto */
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 30%);
  z-index: 1;
}

/* Sombra/fade sobre a imagem de fundo, sem cobrir o conteúdo */
.hero-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    rgba(26, 26, 26, 0) 0%,
    rgb(26, 26, 26) 100%
  );
  opacity: 1;
  overflow: hidden;
  z-index: 1; 
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  margin-bottom: 100px; /* Compensa o header absoluto */
}

.hero-left {
  position: relative;
  max-width: 550px;
  min-height: 320px;
  width: 100%;
}

.hero-title-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hero-title-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-right {
  margin-top: 170px;
  max-width: 320px;
  align-items: flex-start;
}



.hero-title-slide h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}

.hero-title-slide p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero-right p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Título da seção Elo + Chatbank */
.elo-tech-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  max-width: 550px;
}

/* Títulos principais (padronizados em desktop e mobile) */
.section-heading {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.section-heading--compact {
  margin-bottom: 10px;
}

.hero-giant-text {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  font-size: 14vw;
  font-weight: 600;
  line-height: 0.75;

  letter-spacing: 1;
  text-align: center;
  pointer-events: none;
  opacity: 1;

}

.container-banner {
  max-width: 80vw;
  margin: 0 auto;
}

.hero-container {
  position: relative;
}

/* Carrossel contínuo de logos de clientes */
.clients-strip {
  padding: 120px 0;
}

@media (max-width: 900px) {
  .clients-strip {
    padding: 100px 0 80px;
  }
}

.clients-marquee {
  position: relative;
  overflow: hidden;
}

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

.clients-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg-color) 0%,
    rgba(13, 13, 13, 0) 100%
  );
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg-color) 0%,
    rgba(13, 13, 13, 0) 100%
  );
}

.clients-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: clients-scroll 28s linear infinite;
  width: max-content;
}

.client-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #ffffff;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Image Showcase */
/* Showcase de celular + telas de app */
.showcase-phone {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-phone-screens {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.phone-stack {
  position: relative;
  width: 220px;
  aspect-ratio: 9 / 19;
  transform-origin: center bottom;
  border-radius: 32px;
  overflow: hidden;
}

.phone-stack--left {
  transform: translateY(30px) rotate(-12deg);
}

.phone-stack--center {
  transform: translateY(10px);
}

.phone-stack--right {
  transform: translateY(30px) rotate(12deg);
}

.phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  width: 96%;
  height: 98%;
  top: 1.5%;
  left: 2%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Cards Gerais */
.card {
  background-color: #222;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid #333;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card-number {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  color: var(--text-muted);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: transparent;
  background: linear-gradient(135deg, #f99d9f, #9199ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Scroll reveal genérico */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Direções de entrada */
.reveal-up {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-scale {
  transform: scale(0.95);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Awards Section */
.awards-list {
  list-style: none;
}
.awards-list li {
  padding: 25px 0;
  border-bottom: 1px solid #333;
}

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


.awards-list li h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.awards-year {
  /* color com gradiente */
  color: transparent;
  background: linear-gradient(135deg, #f99d9f, #9199ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
}

/* Projetos */
.project-card {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid #222;
  transition: transform 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
}
.project-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.project-info {
  padding: 30px;
}
.project-info h3 {
  font-size: 1.5rem;
  margin-top: 10px;
}
.project-year {
  color: var(--accent-color);
  font-weight: 600;
}

/* Stats */
.stats-numbers {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stat-item h3 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #f99d9f, #9199ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.stat-item p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
}

/* Carrossel de soluções (Multibenefícios, Câmbio, etc.) */
.solutions-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 40px;
  overflow: hidden;
  padding: 0 16px;
}

.solutions-track {
  display: flex;
  gap: 24px;
}

.solution-card {
  flex: 0 0 calc(33.3333% - 16px);
  max-width: calc(33.3333% - 16px);
}

/* Sombra nas extremidades do carrossel de soluções, igual ao de logos */
.solutions-carousel::before,
.solutions-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.solutions-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg-color) 0%,
    rgba(13, 13, 13, 0) 100%
  );
}

.solutions-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg-color) 0%,
    rgba(13, 13, 13, 0) 100%
  );
}

/* Aparência dos cards no carrossel: sem efeito de hover, apenas borda */
.solutions-carousel .pricing-card {
  background-color: #222;
  border: 1px solid #222;
  box-shadow: none;
  padding: 32px 28px;
}

.solutions-carousel .pricing-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.solutions-carousel .pricing-card:hover {
  transform: none;
  box-shadow: none;
}

/* Título dos cards do carrossel com gradiente */
.solutions-carousel .pricing-card h4 {
  color: transparent;
  background: linear-gradient(135deg, #f99d9f, #9199ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.pricing-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.pricing-features {
  list-style: none;
  margin: 15px 0;
  flex-grow: 1;
}
.pricing-features li {
  margin-bottom: 10px;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Banners (1, 2 e 3) */
.banner-vision {
  position: relative;
  width: 100%;
  background-color: #000;
  background-image: url("../img/Gemini_Generated_Image_qmldqbqmldqbqmld.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 300px 20px 150px;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Seção áudio (banner full screen) */
.section-audio {
  position: relative;
  width: 100vw; 
  overflow: hidden;
  background-color: #e5f0e7;
}

.section-audio__content {
  padding-top: 220px;
  padding-bottom: 220px;
  background-image: url("../img/banner-audio.webp");
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

/* Seção banner inteligente (variante com imagem central) */
.section-inteligente {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* remove limite do container */
  background-color: #202221;
  overflow: hidden;
  padding: 100px 0 0;
}

.section-inteligente__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-inteligente__title {
  flex: 0 0 32%;
}

.section-inteligente__banner {
  flex: 0 0 36%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-inteligente__banner img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.section-inteligente__text {
  flex: 0 0 32%;
}

.section-inteligente__title h2 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
}

.section-inteligente__text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 520px;
}
@media (max-width: 1200px) {
}
@media (max-width: 1100px) {
  .section-inteligente__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .section-inteligente__title,
  .section-inteligente__text {
    flex: none;
    width: 100%;
  }
  .section-inteligente__banner {
    flex: none;
    width: 100%;
  }
  .section-inteligente__title h2 {
    font-size: 2.2rem;
  }

  .section-inteligente__text p {
    max-width: unset;
  }

  /* Mobile: ordem desejada
     1) title, 2) text, 3) banner */
  .section-inteligente__title {
    order: 1;
  }
  .section-inteligente__text {
    order: 2;
  }
  .section-inteligente__banner {
    order: 3;
  }
}

.section-audio._flows {
  background-color: #ebedf9;
}

.section-audio._flows .section-audio__content {
  background-image: url("../img/banner-templates.webp");
  padding-top: 180px;
  padding-bottom: 180px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .section-audio__content,
  .section-audio._flows .section-audio__content {
    background-size: 40%;
  }
}

.section-audio__content h2 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 520px;
  color: #222;
}

.section-audio__content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 520px; 
  color: #222;
}

@media (max-width: 768px) {
  .section-audio, .section-audio._flows {
    min-height: 70vh;
  }

  .section-audio__content, .section-audio._flows .section-audio__content {
    padding-top: 100px;
    padding-bottom: 420px;
    background-size: 300px;
  }

  .section-audio__content h2, .section-audio._flows .section-audio__content h2 {
    font-size: 2.2rem;
  }

  /* Mobile: títulos principais padronizados */
  .section-heading {
    font-size: 2.2rem;
  }
}

.banner-vision-floating {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 420px;
  width: 28vw;
  opacity: 0.15;
  pointer-events: none;
  transform: translate(-6%, -10%);
  z-index: 0;
}
.banner-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(28, 6, 8, 0.8) 100%
  );
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.banner-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.banner-arc-section {
  text-align: center;
  padding: 80px 0 120px;
  margin-top: 60px;
}
.arc-gallery {
  position: relative;
  height: 420px;
  max-width: 1100px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.arc-card {
  position: absolute;
  width: 260px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(12, 12, 12, 0.96);
  font-size: 0.8rem;
}

.arc-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.arc-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.arc-card ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Disposição em pentágono */
.arc-img-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.arc-img-2 {
  top: 22%;
  right: 5%;
  z-index: 2;
}

.arc-img-3 {
  bottom: 4%;
  right: 20%;
  z-index: 2;
}

.arc-img-4 {
  bottom: 4%;
  left: 20%;
  z-index: 2;
}

.arc-img-5 {
  top: 22%;
  left: 5%;
  z-index: 2;
}

/* Nó central do pentágono */
.arc-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #f99d9f 0%, #9199ff 70%);
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

/* Linhas em gradiente ligando o centro aos cards */
.arc-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, #f99d9f 0%, #9199ff 100%);
  opacity: 0.7;
}

.arc-line-1 {
  width: 220px;
  transform: rotate(-90deg);
}

.arc-line-2 {
  width: 230px;
  transform: rotate(-30deg);
}

.arc-line-3 {
  width: 210px;
  transform: rotate(20deg);
}

.arc-line-4 {
  width: 210px;
  transform: rotate(160deg);
}

.arc-line-5 {
  width: 230px;
  transform: rotate(210deg);
}
.arc-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.banner-bottom {
  position: relative;
  background-image: url("../img/Gemini_Generated_Image_42oeal42oeal42oe.webp");
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #1a1a1a 10%, rgba(26, 26, 26, 0.4) 100%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: 1;
}
.banner-bottom h2 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.banner-bottom .btn {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  padding: 80px 0 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.giant-text {
  font-size: 16vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .solution-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-title-slide h1 {
    font-size: 2.4rem;
  }

  .section-heading {
    font-size: 2.8rem;
  }

  .section-inteligente__title h2,
  .section-audio__content h2,
  .banner-bottom h2,
  .arc-text h2 {
    font-size: 2.8rem;
  }
}

/* Responsividade Básica */
@media (max-width: 900px) {
  .hero-wrapper {
    height: 75vh;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .hero-left,
  .hero-right {
    max-width: 100%;
    text-align: left;
  }
  .hero-title-slide h1 {
    font-size: 2rem;
  }
  .hero-title-slide p {
    font-size: 0.95rem;
  }

  /* Phones: coluna centralizada e compacta no mobile */
  .showcase-phone-screens {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .phone-stack {
    width: 46vw;
    max-width: 200px;
    transform: none;
  }
  .phone-stack--left,
  .phone-stack--right {
    opacity: 0.75;
  }

  /* Carrossel de soluções: cards mais largos em telas médias */
  .solution-card {
    flex: 0 0 98%;
    max-width: 98%;
  }

  /* Ajusta espaçamento e sombreamento lateral do carrossel no mobile */
  .solutions-track {
    gap: 16px;
  }
  .solutions-carousel::before,
  .solutions-carousel::after {
    width: 48px;
  }

  /* Lockup Elo + Chatbank: evita overflow no mobile */
  .elo-chatbank-lockup {
    flex-wrap: wrap;
    justify-content: center;
  }
  .elo-chatbank-lockup img {
    max-width: 45vw;
    height: auto;
  }

  .elo-main-logo {
    max-width: 300px !important;
    width: 100% !important;
    margin-top: 60px !important;
    margin-bottom: 25px !important;
  }

  /* mobile: título Elo + Chatbank */
  .elo-tech-title {
    font-size: 1.8rem;
  }

  /* bg-glow adaptado para não gerar scroll lateral */
  .bg-glow {
    width: 220px;
    height: 220px;
    filter: blur(60px);
  }
  .bg-glow--hero-left {
    left: -40px;
  }
  .bg-glow--hero-right {
    right: -40px;
  }
  .bg-glow--edge-left {
    left: -60px;
  }
  .bg-glow--edge-right {
    right: -60px;
  }
}

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

  /* banner-vision compacto no mobile */
  .banner-vision {
    padding: 100px 24px 80px;
    background-size: cover;
    background-position: center top;
  }
  .banner-vision h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .banner-bottom h2 {
    font-size: 2rem;
  }
}
