/* ==========================================================================
   1. VARIÁVEIS GLOBAIS & CONFIGURAÇÕES DE RAIZ
   ========================================================================== */
:root {
  /* Cores */
  --bg-dark: #0e0918;
  --primary: #ba306c;
  --primary-light: #e04d8a;
  --accent: #974cc4;
  --secondary: #82719d;
  --light: #f3f2f4;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --platinum-gradient: linear-gradient(90deg, #e0e0e0, #b0b0b0);
  --aurora-white: rgba(255, 255, 255, 0.9);
  --aurora-blue: #00c2ff;
  --aurora-green: #33ff8c;
  --aurora-yellow: #ffc640;
  --aurora-pink: #e54cff;

  /* Espaçamentos */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;

  /* Dimensões */
  --header-height: 80px;
  --logo-height: 40px;
  --mobile-logo-height: 32px;

  /* Transições & Animações */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --aurora-speed: 15s;
}

/* ==========================================================================
   2. RESET & ESTILOS DE BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   3. TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.2;
}

.gradient-text {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.gradient-part1, .gradient-part2 {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.gradient-part1 {
  background: linear-gradient(90deg, #f3f2f4 0%, #82719d 100%);
}

.gradient-part2 {
  background: linear-gradient(90deg, #eb89b4 0%, #ba306c 100%);
}

.platinum-gradient {
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-family-sans);
  font-size: var(--text-size-subtitle);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  display: inline-block;
}

.neon-text {
  color: #ffffff;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
  animation: neon-glow 1.5s ease-in-out infinite alternate;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* ==========================================================================
   5. COMPONENTES
   ========================================================================== */

/* ----- HEADER & NAVEGAÇÃO ----- */
.header {
  background-color: transparent;
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--header-height);
  transition: top 0.3s ease;
}

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

.logo {
  color: #fff;
  transition: color 0.3s ease;
}

.logo svg {
  fill: currentColor;
  transition: color 0.3s, fill 0.3s;
}

.logo:hover, .logo:focus, .logo:active {
  color: var(--primary);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

/* Links do menu */
.nav-list > li > a {
  color: var(--text-light);
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: var(--transition-normal);
  text-decoration: none !important;
}

.nav-list > li:not(.highlighted) > a:hover {
  color: var(--primary-light);
}

.nav-list > li:not(.highlighted) > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 12px;
  transition: var(--transition-normal);
}

.nav-list > li:not(.highlighted) > a:hover::after {
  width: calc(100% - 24px);
}

/* ----- BOTÕES ----- */
.orcamento-btn, .futuristic-button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.orcamento-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, #ba306c 0%, #e04d8a 100%);
  box-shadow: 0 0 16px 2px rgba(186, 48, 108, 0.25), 0 0 32px 0 rgba(224, 77, 138, 0.15);
}

.orcamento-btn:hover, .orcamento-btn:focus {
  background: linear-gradient(90deg, #e04d8a 0%, #ba306c 100%);
  box-shadow: 0 0 15px 8px rgba(224, 77, 138, 0.4), 0 0 64px 0 rgba(186, 48, 108, 0.3);
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
}

.orcamento-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.1) 50%, transparent 75%);
  background-size: 400% 400%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.orcamento-btn:hover::after {
  opacity: 1;
  animation: shine 2s linear infinite;
}

.futuristic-button {
  padding: 0.8rem 2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00c2ff, #ff00ea);
  box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.futuristic-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff00ea, #00c2ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.futuristic-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.futuristic-button:hover::before {
  opacity: 1;
}

/* ----- BOTÃO FLUTUANTE WHATSAPP ----- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
  position: relative;
  z-index: 2;
  text-decoration: none;

}

.whatsapp-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background-color: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-animation 2s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
/* ==========================================================================
   6. SEÇÕES
   ========================================================================== */

/* ----- HERO ----- */
.hero {
  background-color: var(--bg-dark);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content {
  z-index: 3;
  text-align: center;

}

.hero-title-aurora {
  font-size: clamp(2rem, 6vw, 4rem);
  text-align: center;
  
  font-weight: 800;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(70deg, var(--aurora-white), var(--aurora-pink), var(--aurora-white), var(--aurora-blue), var(--aurora-green), var(--aurora-white), var(--aurora-yellow), var(--aurora-pink), var(--aurora-white));
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: aurora-flow var(--aurora-speed, 9s) linear infinite;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 16px rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  padding: 0 2px;
  position: relative;
  z-index: 1001;
}

.hero-title-aurora .break-line {
  display: inline;
}

.hero-title-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.77, 0, .18, 1), transform 0.7s cubic-bezier(.77, 0, .18, 1);
  will-change: opacity, transform;
}

.hero-title-animate.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(75, 45, 209, 0.5) 50%, transparent 100%);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}


/* ----- VANTAGENS FUTURISTAS ----- */
.futuristic-advantages {
  margin-top: 0;
  z-index: 3;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.futuristic-advantages .container {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.holographic-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #d3d3d3 0%, #ffffff 50%, #d3d3d3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.title-line {
  display: block;
  @media screen and (max-width: 768px) {
    font-size: 1.1rem;  
    
  }
}

.glowing-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.glowing-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #00c2ff, #ff00ea);
  border-radius: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(90, 70, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(90, 70, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 194, 255, 0.1);
}

.benefit-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #00c2ff, #ff00ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-text {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
/* ================================
   RODAPÉ
   =============================== */
.footer {
  padding: 1rem 0;
  position: relative;
  overflow: hidden;}

/* Linha gradiente melhorada */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
              transparent 0%, 
              rgba(224, 77, 138, 0.8) 50%, 
              transparent 100%);
  z-index: 1;
}

.footer-content {
  width: 100%;
  max-width: 1200px; /* Limite máximo para conteúdo */
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Garante que o conteúdo fique acima da linha */
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza melhor */
  width: 100%;
}

.footer-logo svg {
  height: 27px;
  width: auto;
  display: block; /* Remove espaçamento extra */
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;     /* Centraliza horizontalmente */
  flex-direction: column;      /* Empilha verticalmente */
  align-items: center;         /* Centraliza horizontalmente em colunas */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
  position: relative;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 0.5rem;
}

.footer {
  padding: 1rem 0;
}


/* ==========================================================================
   7. ANIMAÇÕES (KEYFRAMES)
   ========================================================================== */
@keyframes neon-glow {
  from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px rgba(255, 255, 255, 0.5); }
  to { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.3); }
}

@keyframes shine {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

@keyframes aurora-flow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes whatsapp-pulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  70% { transform: scale(1.4); opacity: 0.15; }
  100% { transform: scale(1.7); opacity: 0; }
}

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 992px) {
  .benefits-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 30%;
  }
}

/* Slider - Efeito Clean com Retângulos Futuristas */
.partners-slider,
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px;
  background: transparent;
}

.slider-track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.slide {
  flex: 0 0 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  background: transparent;
  transition: all 0.4s ease;
}

.slide:hover {
  border-color: rgba(224,77,138,0.5);
  background: rgba(224,77,138,0.1);
  box-shadow: 0 0 15px rgba(224,77,138,0.3);
  transform: translateY(-5px);
}

.slide:hover .partner-logo {
  transform: scale(1.05);
}

.partner-logo {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.4s ease;
  user-select: none;
}

.slider-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 15%;
  pointer-events: none;
  z-index: 2;
}

.slider-overlay.left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.slider-overlay.right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark) 0%, transparent 100%);
}

.slider-track {
  user-select: none;
  touch-action: pan-y;
}

@media (max-width: 768px) {
  .slide {
    flex-basis: 150px;
  }
  .partner-logo {
    max-width: 140px;
  }

}

/* ==========================================================================
   8. MEDIA QUERIES (RESPONSIVO)
   ========================================================================== */

/* ----- Telas médias (abaixo de 992px) - Ativa Menu Mobile ----- */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(14, 9, 24, 0.7);
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Transição mais suave */
    z-index: 999;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.5),
      inset 0 0 0 1px rgba(255, 255, 255, 0.1); /* Sombra + borda interna */
    opacity: 0;
    visibility: hidden;
  }

  .nav.active {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    align-items: flex-start;
  }

  .nav-list > li {
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav.active .nav-list > li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Delay para animação dos itens */
  .nav.active .nav-list > li:nth-child(1) { transition-delay: 0.15s; }
  .nav.active .nav-list > li:nth-child(2) { transition-delay: 0.25s; }
  .nav.active .nav-list > li:nth-child(3) { transition-delay: 0.35s; }
  .nav.active .nav-list > li:nth-child(4) { transition-delay: 0.45s; }
  .nav.active .nav-list > li:nth-child(5) { transition-delay: 0.55s; }

 .nav-list > li > a {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  display: block;
  width: calc(100% - 3rem);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

  .nav-list > li > a:hover {
    color: var(--primary-light);
    background: rgba(186, 48, 108, 0.15);
    transform: translateX(5px);
  }

  /* Overlay melhorado */
  .nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 998;
  }

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

  /* Toggle mobile aprimorado */
  .mobile-menu-toggle {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    transform: scale(1.1);
  }

  .mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px;
    transform-origin: left center;
  }

  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(-2px);
    width: 120%;
  }

  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(2px);
    width: 120%;
  }
}
/* ----- Tablets e Mobile (abaixo de 768px) ----- */

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
    padding: 20px 0;
  }

 .mobile-break {
    display: inline;
  }
  
  .hero .container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: auto;
  }

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

  .hero-title-aurora {
    font-size: 2.8rem; }

}

#star-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}


  .futuristic-advantages {
    margin-top: 1rem; /* Ajuste para sobrepor a animação da Hero */
    z-index: 3;
  }

  .logo img {
    height: var(--mobile-logo-height);
  }
  
  .footer { padding: 2rem 0; }
  .footer-content, .footer-social { gap: 1.25rem; }
  
  .footer-links {
    gap: 1rem;
    flex-direction: column;
  }


/* ----- Telas Pequenas (abaixo de 600px) ----- */
@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .footer-copy {
    text-align: left;
    margin-top: 0.5rem;
  }
}

/* ----- Telas Muito Pequenas (abaixo de 480px) ----- */
@media (max-width: 480px) {
  .gradient-text { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  
  .nav {
    width: 90%;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   9. SEÇÃO FEATURES - CSS COMPLETO DOS BOXES (FUNCIONAL)
   ========================================================================== */



.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Wrapper com borda animada */
.feature-border-wrapper {
  position: relative;
  padding: 3px;
  border-radius: 1rem;
  background: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  animation: spin 4s linear infinite;
  z-index: 0;
}

.feature-border-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  filter: blur(25px);
  opacity: 0.3;
  z-index: -1;
  animation: spin 4s linear infinite;
}

/* Estrutura do card interno */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: #1c1f2b;
  z-index: 1;
  position: relative;
  height: 100%;
}

/* Conteúdo acima dos efeitos */
.feature-card > * {
  position: relative;
  z-index: 1;
}

/* Animação de rotação */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

/* BOXES ESPECIAIS */

.typewriter-wrapper {
  height: 60px;
  margin-bottom: 1rem;
  overflow: visible;
}

#typewriter {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f3f2f4 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

#typewriter-container {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f3f2f4 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

#typewriter {
  display: inline-block;
  animation: grow-text 0.2s ease-in-out forwards;
}

@keyframes grow-text {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 2.2rem;
  background: linear-gradient(180deg, #ffd53e 0%, #d4af37 50%, #8f7932 100%);
  box-shadow: 0 0 6px #d4af37;
  margin-left: 4px;
  animation: blink 0.8s steps(1) infinite;
  border-radius: 2px;
  vertical-align: middle;
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.3); /* dourado suave */
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.6); /* brilho dourado */
  }
}

.counter {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f3f2f4 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.segments-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 1.5rem;
}
/* ICONES ORBITANDO */
.segment-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f3f2f4 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
  white-space: nowrap;
}

.orbit-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

.orbit-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #7a7a7afa;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
}

/* ANIMAÇÕES APLICADAS INDIVIDUALMENTE */
.orbit-icon:nth-child(1) { animation: orbit-path-1 20s linear infinite; }
.orbit-icon:nth-child(2) { animation: orbit-path-2 20s linear infinite; }
.orbit-icon:nth-child(3) { animation: orbit-path-3 20s linear infinite; }
.orbit-icon:nth-child(4) { animation: orbit-path-4 20s linear infinite; }
.orbit-icon:nth-child(5) { animation: orbit-path-5 20s linear infinite; }
.orbit-icon:nth-child(6) { animation: orbit-path-6 20s linear infinite; }
.orbit-icon:nth-child(7) { animation: orbit-path-7 20s linear infinite; }
.orbit-icon:nth-child(8) { animation: orbit-path-8 20s linear infinite; }


/* KEYFRAMES PARA CADA ÍCONE */
@keyframes orbit-path-1 {
  from { transform: rotate(0deg)   translate(100px) rotate(0deg); }
  to   { transform: rotate(360deg) translate(100px) rotate(-360deg); }
}
@keyframes orbit-path-2 {
  from { transform: rotate(45deg)  translate(100px) rotate(-45deg); }
  to   { transform: rotate(405deg) translate(100px) rotate(-405deg); }
}
@keyframes orbit-path-3 {
  from { transform: rotate(90deg)  translate(100px) rotate(-90deg); }
  to   { transform: rotate(450deg) translate(100px) rotate(-450deg); }
}
@keyframes orbit-path-4 {
  from { transform: rotate(135deg) translate(100px) rotate(-135deg); }
  to   { transform: rotate(495deg) translate(100px) rotate(-495deg); }
}
@keyframes orbit-path-5 {
  from { transform: rotate(180deg) translate(100px) rotate(-180deg); }
  to   { transform: rotate(540deg) translate(100px) rotate(-540deg); }
}
@keyframes orbit-path-6 {
  from { transform: rotate(225deg) translate(100px) rotate(-225deg); }
  to   { transform: rotate(585deg) translate(100px) rotate(-585deg); }
}
@keyframes orbit-path-7 {
  from { transform: rotate(270deg) translate(100px) rotate(-270deg); }
  to   { transform: rotate(630deg) translate(100px) rotate(-630deg); }
}
@keyframes orbit-path-8 {
  from { transform: rotate(315deg) translate(100px) rotate(-315deg); }
  to   { transform: rotate(675deg) translate(100px) rotate(-675deg); }
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .segments-wrapper {
    width: 200px;
    height: 200px;
  }

  /* Remove animações desktop e aplica animações mobile */
  .orbit-icon:nth-child(1) { animation: orbit-path-1-mobile 20s linear infinite; }
  .orbit-icon:nth-child(2) { animation: orbit-path-2-mobile 20s linear infinite; }
  .orbit-icon:nth-child(3) { animation: orbit-path-3-mobile 20s linear infinite; }
  .orbit-icon:nth-child(4) { animation: orbit-path-4-mobile 20s linear infinite; }
  .orbit-icon:nth-child(5) { animation: orbit-path-5-mobile 20s linear infinite; }
  .orbit-icon:nth-child(6) { animation: orbit-path-6-mobile 20s linear infinite; }
  .orbit-icon:nth-child(7) { animation: orbit-path-7-mobile 20s linear infinite; }
  .orbit-icon:nth-child(8) { animation: orbit-path-8-mobile 20s linear infinite; }
  
  /* KEYFRAMES PARA MOBILE */
  @keyframes orbit-path-1-mobile {
    from { transform: rotate(0deg)   translate(80px) rotate(0deg); }
    to   { transform: rotate(360deg) translate(80px) rotate(-360deg); }
  }
  @keyframes orbit-path-2-mobile {
    from { transform: rotate(45deg)  translate(80px) rotate(-45deg); }
    to   { transform: rotate(405deg) translate(80px) rotate(-405deg); }
  }
  @keyframes orbit-path-3-mobile {
    from { transform: rotate(90deg)  translate(80px) rotate(-90deg); }
    to   { transform: rotate(450deg) translate(80px) rotate(-450deg); }
  }
  @keyframes orbit-path-4-mobile {
    from { transform: rotate(135deg) translate(80px) rotate(-135deg); }
    to   { transform: rotate(495deg) translate(80px) rotate(-495deg); }
  }
  @keyframes orbit-path-5-mobile {
    from { transform: rotate(180deg) translate(80px) rotate(-180deg); }
    to   { transform: rotate(540deg) translate(80px) rotate(-540deg); }
  }
  @keyframes orbit-path-6-mobile {
    from { transform: rotate(225deg) translate(80px) rotate(-225deg); }
    to   { transform: rotate(585deg) translate(80px) rotate(-585deg); }
  }
  @keyframes orbit-path-7-mobile {
    from { transform: rotate(270deg) translate(80px) rotate(-270deg); }
    to   { transform: rotate(630deg) translate(80px) rotate(-630deg); }
  }
  @keyframes orbit-path-8-mobile {
    from { transform: rotate(315deg) translate(80px) rotate(-315deg); }
    to   { transform: rotate(675deg) translate(80px) rotate(-675deg); }
  }
}

@media (max-width: 576px) {
  


  .features-grid {
    /* Força os cards a ficarem um embaixo do outro */
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    /* Ajusta o padding interno dos cards para telas menores */
    padding: 1rem;
  }

  /* Ajusta o tamanho da fonte dos títulos para evitar quebras */
  #typewriter, 
  #typewriter-container, 
  .segment-title {
    font-size: 1.9rem;
  }
  
  /* Ajusta o tamanho do cursor de digitação */
  .cursor {
    height: 1.9rem;
  }

  .counter {
    font-size: 2.2rem;
  }
}


/* ==========================================================================
   10. SEÇÃO DEPOIMENTOS
   ========================================================================== */

.testimonials-section {
  padding: 2rem 0rem;
  position: relative;
}

.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-track-container {
  overflow: visible; /* desktop sem scroll */
  width: 100%;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(90, 70, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  min-height: 280px;
  box-sizing: border-box;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--primary);
    flex-wrap: nowrap;

}

.testimonial-author .author-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  white-space: normal;
}

.testimonial-author .author-company {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.testimonial-stars {
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.slider-nav-btn {
  display: none; /* esconde no desktop */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex; /* para centralizar ícone */
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.slider-nav-btn:hover {
  background-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
  left: -20px;
}

.slider-nav-btn.next {
  right: -20px;
}

/* RESPONSIVO para mobile com botão de navegação */
@media (max-width: 992px) {

  .testimonials-track-container {
    overflow: hidden; /* esconde scroll */
    width: 100%;
  }

.holographic-title .title-line {
    font-size: 1.5rem; /* ajuste conforme desejar */
  }
  
  .testimonials-track {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
    transition: transform 0.5s ease;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .slider-nav-btn {
    display: flex; /* mostra botões */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.25rem;
  }

  .slider-nav-btn.prev {
    left: -10px;
  }

  .slider-nav-btn.next {
    right: -10px;
  }
}


/* ==========================================================================
   11. SOLUÇÕES E SERVIÇOS
   ========================================================================== */

    @keyframes aurora-flow {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    
    .hero-title-aurora::after {
      content: '';
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      background: inherit;
      background-size: 300% 100%;
      filter: blur(15px);
      opacity: 0.7;
      z-index: -1;
      animation: aurora-flow 8s linear infinite reverse;
    }
    
    .service-category {
      margin-bottom: 3rem;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(90, 70, 255, 0.1);
      backdrop-filter: blur(5px);
    }
    
    .service-category h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--primary-light);
      display: flex;
      align-items: center;
      gap: 1rem;
      
    }

    .service-category p {
      margin-bottom: 1rem; 
    }

    
    .service-category h2 i {
      background: linear-gradient(135deg, #00c2ff, #ff00ea);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .service-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    
    .service-item {
      padding: 1.5rem;
      background: rgba(14, 9, 24, 0.7);
      border-radius: 8px;
      border-left: 3px solid var(--primary);
      transition: all 0.3s ease;
    }
    
    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(224, 77, 138, 0.2);
    }
    
    .service-item h3 {
      color: var(--light);
      margin-bottom: 0.8rem;
      font-size: 1.2rem;
    }
    
    .service-item p {
      color: var(--text-gray);
      line-height: 1.6;
    }
    
    .feature-list {
      margin-top: 1rem;
      padding-left: 1.5rem;
    }
    
    .feature-list li {
      margin-bottom: 0.5rem;
      color: var(--text-gray);
      position: relative;
    }
    
    .feature-list li::before {
      content: '•';
      color: var(--primary-light);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }
    
    .highlight-box {
      background: rgba(186, 48, 108, 0.1);
      border: 1px solid var(--primary);
      padding: 1.5rem;
      border-radius: 8px;
      margin-top: 1.5rem;
      font-style: italic;
    }
.highlight-box p {
  color: ghostwhite; /* amarelo claro, por exemplo */
}

/* Estilos para os botões expansíveis */

@media (min-width: 769px) {
 
  .toggle-btn {
    display: none;
  }
}


@media (max-width: 768px) {
  .toggle-btn {
    background: none;
    border: none;
    padding: 0;
  }

  .toggle-btn i {
    background: linear-gradient(135deg, #00c2ff, #ff00ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    line-height: 1;
  }

  
  .service-category {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
  }

  .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .category-header h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    flex: 1;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .service-item {
    padding: 1rem;
    border-radius: 10px;
    border-left: 2px solid var(--primary);
    background: rgba(14, 9, 24, 0.7);
    overflow: hidden;
  }

  .service-list {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }

  .futuristic-advantages .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mostrar/esconder conteúdo com base em .expanded */
.service-category .category-content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.service-category.expanded .category-content {
  max-height: 1000px; /* Valor grande para acomodar o conteúdo */
  padding-top: 1rem;
  padding-bottom: 1rem;
  opacity: 1;
}

}


/* ========================================================================== */
/* 12. SEÇÃO DE CONTATO                                                       */
/* ========================================================================== */

/* --------------------------- */
/* 12.2 Layout                 */
/* --------------------------- */
.content-grid2 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .content-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------- */
/* 12.3 Container do Formulário */
/* --------------------------- */
.form-container2 {
  position: relative;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  background: #110516;
  border: 1px solid rgba(224, 77, 138, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-height: 500px;
}

.form-content2 {
  width: 100%;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

/* --------------------------- */
/* 12.4 Formulário             */
/* --------------------------- */
.contact-form2 {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.form-group2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group2 label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 0.5rem;
  text-align: left;
}

.form-container2 .form-group2 input,
.form-container2 .form-group2 textarea {
  padding: 1rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(224, 77, 138, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-group2 input::placeholder,
.form-group2 textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.5;
  font-style: italic;
}

.form-container2 .form-group2 input:focus,
.form-container2 .form-group2 textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 15px 3px rgba(224, 77, 138, 0.3);
  background: rgba(97, 72, 72, 0.15);
}


.form-row2 {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-row2 .form-group2 {
  flex: 1;
  min-width: 0; /* importante para responsividade */
}

@media (max-width: 767px) {
  .form-row2 {
    flex-direction: column;
    gap: 1rem;
  }
}

.form-row2 .form-group2:first-child {
  flex: 1.6; 
}

/* --------------------------- */
/* 12.6 Botões                 */
/* --------------------------- */
.enviar-button2 {
  background: linear-gradient(135deg, var(--primary-light), #8f2855);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(224, 77, 138, 0.3);
}

.enviar-button2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), #e04d8a);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.enviar-button2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(224, 77, 138, 0.4);
}

.enviar-button2:hover::before {
  opacity: 1;
}

.enviar-button2:active {
  transform: translateY(1px);
}

.orcamento2-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.orcamento2-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5df78d, #25D366);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.orcamento2-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.orcamento2-btn:hover::before {
  opacity: 1;
}

.orcamento2-btn:active {
  transform: translateY(1px);
}

.orcamento2-btn i {
  font-size: 1.2rem;
}

/* --------------------------- */
/* 12.7 Mensagem de Confirmação - CONTATO */
/* --------------------------- */
.form-container2 .confirmation-view2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.form-container2.show-confirmation .confirmation-view2 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.form-container2.show-confirmation .form-content2 {
  display: none;
}

.form-container2.show-confirmation .form-header {
  display: none;
}

.form-container2 .confirmation-view2 i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.form-container2 .confirmation-view2 h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.form-container2 .confirmation-view2 p {
  color: white;
  margin-bottom: 2rem;
  max-width: 80%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-container2 .confirmation-view2 .orcamento-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-light);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-container2 .confirmation-view2 .orcamento-btn:hover {
  background: rgba(224, 77, 138, 0.2);
  transform: translateY(-2px);
}

.form-container2:not(.form-submitting) .enviar-button2 .button-loader,
.form-container2:not(.form-submitting) .enviar-button2 .button-loader {
  display: none !important;
}

.form-container2:not(.form-submitting) .enviar-button2 .button-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --------------------------- */
/* 12.8 Informações de Contato */
/* --------------------------- */
.contact-info2 {
  display: grid;
  gap: 1rem;
}

.info-item2 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.info-item2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(224, 77, 138, 0.1), transparent);
  transition: left 0.6s ease;
}

.info-item2:hover {
  color: #fff;
  background: rgba(186, 48, 108, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(224, 77, 138, 0.2);
}

.info-item2:hover::before {
  left: 100%;
}

.info-item2 i {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--primary-light), #e04d8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
  min-width: 1.5em;
  text-align: center;
}

.info-item2:hover i {
  transform: scale(1.2);
}

.info-item2 span {
  transition: transform 0.3s ease;
}

.info-item2:hover span {
  transform: translateX(5px);
}

/* --------------------------- */
/* 12.9 Animações              */
/* --------------------------- */
@keyframes planeTakeOff {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-40px) rotate(15deg); opacity: 0.8; }
  100% { transform: translateY(-500px) rotate(30deg); opacity: 0; }
}

@keyframes formFadeOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0; }
}

@keyframes confetti {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

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



/* Efeitos de botão */
.button-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

/* Efeito de confetti */
.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-light);
  opacity: 0;
  z-index: 10;
}

/* Estados de animação */
.form-submitting .form-content2 {
  animation: formFadeOut 0.6s forwards;
}

.form-submitting .enviar-button2 .button-text {
  transform: translateY(30px);
  opacity: 0;
}



.form-submitted .confirmation-view2 {
  display: flex;
  animation: fadeInUp 0.6s 0.3s both;
}

/* ========================================================================== */
/* 13. SEÇÃO DE ORÇAMENTO                                                    */
/* ========================================================================== */

/* --------------------------- */
/* 13.1 Container Principal    */
/* --------------------------- */
.orc-form-light {
  width: 100%;
  max-width: 980px;
  margin: 1rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 650px;
  transition: all 0.4s ease;
}

@media (max-width: 992px) {
  .orc-form-light {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .orc-form-light {
    padding: 1.5rem;
    min-height: 700px;
  }
}

@media (max-width: 480px) {
  .orc-form-light {
    padding: 1.2rem;
    margin: 1.5rem auto;
  }
}

/* --------------------------- */
/* 13.2 Estrutura do Formulário */
/* --------------------------- */
#orcamento-form {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}

.orc-form-light .form-title {
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

/* --------------------------- */
/* 13.3 Grupos de Campos       */
/* --------------------------- */
.orc-form-light .form-group {
  margin-bottom: 1rem;
}


.orc-form-light label {
  display: block;
  margin-bottom: 0.8rem;
  color: #444;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 480px) {
  .orc-form-light label {
    font-size: 0.95rem;
  }
}

/* --------------------------- */
/* 13.4 Campos de Entrada      */
/* --------------------------- */
.orc-form-light input[type="text"],
.orc-form-light input[type="email"],
.orc-form-light input[type="tel"],
.orc-form-light textarea,
.orc-form-light select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #333;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
}

.orc-form-light textarea {
  min-height: 120px;
  resize: vertical;
}

.orc-form-light ::placeholder {
  color: #999;
  opacity: 1;
  font-size: 0.95rem;
}

.orc-form-light input:focus,
.orc-form-light textarea:focus,
.orc-form-light select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(224, 77, 138, 0.15);
  background: #fff;
}


/* --------------------------- */
/* 13.7 Opções de Serviço      */
/* --------------------------- */
.orc-form-light .options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .orc-form-light .options-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .orc-form-light .options-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.orc-form-light .option-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.7rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.orc-form-light .option-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 3px 10px rgba(224, 77, 138, 0.1);
}

.orc-form-light .option-card input {
  position: absolute;
  opacity: 0;
}

.orc-form-light .option-card span {
  position: relative;
  z-index: 1;
}

.orc-form-light .option-card input:checked + span {
  color: var(--primary);
  font-weight: 500;
}

.orc-form-light .option-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(224, 77, 138, 0.05);
  border: 1px solid rgba(224, 77, 138, 0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.orc-form-light .option-card input:checked ~ .option-highlight {
  opacity: 1;
}


/* Campos lado a lado: Empresa + Email */
.orc-form-light .orc-inline-group {
  display: flex;
  gap: 1.5rem;
}

.orc-form-light .orc-inline-group .form-group {
  flex: 1;
}

@media (max-width: 767px) {
  .orc-form-light .orc-inline-group {
    flex-direction: column;
  }
}




/* --------------------------- */
/* 13.8 Botão de Envio         */
/* --------------------------- */
.orc-btn {
  width: 100%;
  padding: 1.2rem;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-shadow: 0 4px 12px rgba(224, 77, 138, 0.2);
}

.orc-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 77, 138, 0.3);
}

.orc-btn:active {
  transform: translateY(0);
}



/* --------------------------- */
/* 13.9 Mensagem de Confirmação - ORÇAMENTO */
/* --------------------------- */
.orc-form-light .confirmation-view2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.orc-form-light.show-confirmation .confirmation-view2 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.orc-form-light.show-confirmation #orcamento-form {
  display: none;
}

.orc-form-light .confirmation-view2 i {
  font-size: 3.5rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.orc-form-light .confirmation-view2 h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.orc-form-light .confirmation-view2 p {
  color: #666;
  margin-bottom: 2rem;
  max-width: 80%;
  line-height: 1.6;
}

.orc-form-light .confirmation-view2 .orcamento-btn {
  background: var(--primary-light);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(224, 77, 138, 0.3);
}

.orc-form-light .confirmation-view2 .orcamento-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(224, 77, 138, 0.4);
}

@media (max-width: 768px) {
  .orc-form-light .confirmation-view2 {
    padding: 2rem;
  }
  
  .orc-form-light .confirmation-view2 h3 {
    font-size: 1.5rem;
  }
  
  .orc-form-light .confirmation-view2 p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .orc-form-light .confirmation-view2 {
    padding: 1.5rem;
  }
  
  .orc-form-light .confirmation-view2 i {
    font-size: 3rem;
  }
  
  .orc-form-light .confirmation-view2 h3 {
    font-size: 1.3rem;
  }
}

.orc-form-light:not(.form-submitting) .orc-btn .submit-loader {
  display: none !important;
}

.orc-form-light:not(.form-submitting) .orc-btn .button-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --------------------------- */
/* 13.10 Animações             */
/* --------------------------- */
.form-submitting .form-content2,
.form-submitting form {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.6s ease;
}

.submit-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-message {
  color: #ff4d4d;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

/* Animação de confetti */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.confetti-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  opacity: 0;
  border-radius: 50%;
  animation: confettiFall 3s forwards;
}


@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

