/* screen - index */

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00010d 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 30px;
}

.loading-logo img {
  width: 120px;
  height: auto;
  animation: pulse 2s infinite;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px auto;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #5C24FF, #FF3BFF);
  border-radius: 2px;
  animation: loading 2s ease-in-out infinite;
}

.loading-text {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #5C24FF, #FF3BFF);
  width: 0%;
  transition: width 0.3s ease;
}

/* Scroll suave para toda a página */
html {
  scroll-behavior: smooth;
}

/* Container principal com transição suave */
.index {
  align-items: center;
  background-color: var(--jaguar);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
}

/* ========================================
   SOLUTIONS SECTION
======================================== */

/* Efeito de fade entre seções */
.solutions-section,
.platform-section,
.cases-section,
.cta-section {
  position: relative;
  min-height: auto;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.8s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

/* Backgrounds específicos para cada seção */
.solutions-section {
  background: url('../img/solutions.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.platform-section {
  position: relative;
  padding: 120px 0;
  background: url('../img/platform.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Overlay escuro para a seção platform */
.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
  transition: background 0.8s ease-in-out;
}

/* Garantir que o conteúdo fique acima do overlay */
.platform-section .headline,
.platform-section .platform-svg-wrapper {
  position: relative;
  z-index: 2;
}

.cases-section {
  background: url('../img/cases.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 80px 40px;
  overflow: visible;
}

.cta-section {
  background: url('../img/cta.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

/* Efeito de fade no scroll */
.solutions-section.fade-out,
.platform-section.fade-out,
.cases-section.fade-out,
.cta-section.fade-out {
  opacity: 0.7;
  transform: translateY(20px);
}

/* Overlay de transição entre seções */
.section-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.section-transition.active {
  opacity: 1;
}

/* Overlay escuro para melhorar legibilidade */
.solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
  transition: background 0.8s ease-in-out;
}

/* Transição suave para a próxima seção */
.solutions-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.solutions-section .headline {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.solutions-section .headline h2 {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 100%;
}

.gradient-text {
  background: linear-gradient(90deg, #5C24FF, #FF3BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-section .headline h2 .no-break {
  white-space: nowrap;
}

.solutions-section .headline p {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.solutions-section .headline p strong {
  font-weight: 700;
  color: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.solution-item {
  text-align: center;
  transition: all 0.3s ease;
  padding: 30px 20px;
  background: #000000;
  border-radius: 8px;
  border: 1px solid rgba(92, 36, 255, 0.2);
  position: relative;
}

.solution-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 59, 255, 0.3), rgba(236, 191, 191, 0.2), rgba(92, 36, 255, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.solution-item:hover {
  transform: translateY(-5px);
  border-color: rgba(92, 36, 255, 0.4);
}

.solution-item:hover::before {
  background: linear-gradient(90deg, rgba(255, 59, 255, 0.5), rgba(236, 191, 191, 0.3), rgba(92, 36, 255, 0.5));
}

.solution-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
  transform: scale(1.05);
}

.solution-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.solution-title {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.solution-description {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Responsive para soluções */
@media screen and (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .solutions-section .headline h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .solutions-section {
    padding: 80px 15px;
    background-attachment: scroll;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solutions-section .headline {
    margin-bottom: 40px;
  }
  
  .solutions-section .headline h2 {
    font-size: 32px;
  }
  
  .solutions-section .headline p {
    font-size: 18px;
  }
  
  .solution-item {
    padding: 25px 15px;
  }
  
  .solution-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .solution-icon img {
    width: 70px;
    height: 70px;
  }
  
  .solution-title {
    font-size: 22px;
  }
  
  .solution-description {
    font-size: 15px;
  }
}

.index .overlap-group {
  position: relative;
  width: 100%;
  max-width: 590px;
}

.index .footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 20px 20px;
  background: #00010d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Logo e Descrição Principal */
.footer-main {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-text {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.footer-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* Links e Copyright */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Responsive para Footer */
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 20px 15px;
  }
  
  .footer-container {
    gap: 25px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-logo {
    align-self: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

/* ========================================
   HERO SECTION
======================================== */

/* Hero Container */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: url('../img/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Overlay escuro para melhorar legibilidade */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 85%;
  max-width: 1000px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 2px solid #5C24FF;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: borderColorChange 6s linear infinite;
  height: 70px;
}

@keyframes borderColorChange {
  0% {
    border-color: #5C24FF;
  }
  20% {
    border-color: #b224ff;
  }
  40% {
    border-color: #2495ff;
  }
  60% {
    border-color: #16F5FD;
  }
  80% {
    border-color: #1640fd;
  }
  100% {
    border-color: #5C24FF;
  }
}

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

.logo {
  height: 24px;
  transition: transform 0.3s ease;
}

.navigation-menu {
  display: flex;
  gap: 20px;
  margin-left: auto;
  justify-content: flex-end;
}

.menu-item {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  display: block !important;
  position: relative;
  overflow: hidden;
}

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

.menu-item:hover {
  color: #16F5FD;
  background: rgba(92, 36, 255, 0.1);
  border-color: rgba(92, 36, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 36, 255, 0.2);
}

.menu-item:hover::before {
  left: 100%;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  text-align: center;
  z-index: 2;
  position: relative;
  padding-top: 100px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
}

.hero-title {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.hero-title .highlight {
  color: #16F5FD;
}

.hero-description {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 900px;
}

.hero-description strong {
  color: #5C24FF;
  font-weight: 600;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 180px;
  max-width: 220px;
}

.stat-number {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

.stat-number .accent {
  color: #5C24FF;
}

.stat-description {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* Responsive Media Queries */
@media screen and (max-width: 1200px) {
  .navbar-container {
    padding: 5px 20px;
    border: 2px solid #5C24FF;
    animation: borderColorChange 6s linear infinite;
  }

  .navigation-menu {
    gap: 20px;
  }

  .menu-item {
    font-size: 15px;
    padding: 6px 14px;
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .navigation-menu {
    display: none !important;
  }

  .navbar-container {
    padding: 10px 20px;
    height: 60px;
  }

  .logo {
    height: 35px;
  }
  
  .hero {
    padding: 80px 15px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-item {
    flex: 1;
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-description {
    font-size: 14px;
  }
  
  .solutions-section {
    padding: 80px 15px;
    background-attachment: scroll;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solutions-section .headline {
    margin-bottom: 40px;
  }
  
  .solutions-section .headline h2 {
    font-size: 28px;
  }
  
  .solutions-section .headline p {
    font-size: 16px;
  }
  
  .solution-item {
    padding: 30px 20px;
  }
  
  .platform-section {
    padding: 80px 15px;
    background-attachment: scroll;
  }
  
  .platform-svg-wrapper {
    padding: 15px 20px;
    margin: 0 10px;
  }
  
  .platform-svg-wrapper img {
    min-height: 350px !important;
  }
  
  .headline-2 {
    margin-bottom: 40px;
  }
}

.title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 8px;
  flex: 1;
  min-height: auto;
  padding: 0;
}

.icon-1 {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  background: none !important;
  border: none !important;
  transition: all 0.3s ease;
}

.icon-1:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.carbondata-vis-1 {
  font-size: 26px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  filter: none;
  transition: all 0.3s ease;
}

.para {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
  flex: 1;
  display: flex;
  align-items: center;
}

.header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}

.icon-1 {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  background: none !important;
  border: none !important;
  transition: all 0.3s ease;
}

.icon-1:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(92, 36, 255, 0.6);
}

.carbondata-vis-1 {
  font-size: 26px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  filter: none;
  transition: all 0.3s ease;
}

.para {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.implantamos-monitora,
.desenvolvemos-audito,
.implementamos-monito,
.integrmos-nossa-pla,
.automatizamos-testes,
.address-1 {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.text-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.text-icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.implantamos-monitora,
.desenvolvemos-audito,
.implementamos-monito,
.integrmos-nossa-pla,
.automatizamos-testes,
.address-1 {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.0;
  margin: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  flex: 1;
}

/* Plataforma - Grid 2x2 com cards conectados */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.platform-card-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.platform-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5C24FF, #FF3BFF);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(92,36,255,0.2);
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.platform-card {
  background: #181828;
  border: 1.5px solid #a259ff;
  border-radius: 12px;
  padding: 24px 28px;
  color: #fff;
  min-width: 320px;
  max-width: 420px;
  box-shadow: 0 2px 16px rgba(92,36,255,0.08);
}

.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.platform-card p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
}

/* Remover linhas de conexão feitas por CSS/HTML */
.platform-card-wrapper:nth-child(1)::after,
.platform-card-wrapper:nth-child(2)::after,
.platform-card-wrapper:nth-child(3)::after,
.platform-card-wrapper:nth-child(4)::after,
.platform-lines,
.platform-lines svg {
  display: none !important;
}

/* Manter apenas o grid e os cards */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.platform-card-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.platform-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5C24FF, #FF3BFF);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(92,36,255,0.2);
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.platform-card {
  background: #181828;
  border: 1.5px solid #a259ff;
  border-radius: 12px;
  padding: 24px 28px;
  color: #fff;
  min-width: 320px;
  max-width: 420px;
  box-shadow: 0 2px 16px rgba(92,36,255,0.08);
}

.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.platform-card p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .platform-card {
    min-width: 0;
    max-width: 100%;
  }
  .platform-card-wrapper::after {
    display: none;
  }
  .platform-lines {
    display: none !important;
  }
}

.platform-section {
  position: relative;
}

.platform-lines {
  position: relative;
  z-index: 3;
}

.platform-svg-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
}

.platform-svg-wrapper img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  pointer-events: none !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 15 !important;
  max-width: 100% !important;
  min-height: 350px !important;
}

@media screen and (max-width: 1024px) {
  .platform-svg-wrapper img {
    content: url('../img/platfom-mobile.svg') !important;
    min-height: 300px !important;
  }
}

@media screen and (max-width: 768px) {
  .platform-svg-wrapper img {
    content: url('../img/platfom-mobile.svg') !important;
    min-height: 250px !important;
  }
}

@media screen and (max-width: 480px) {
  .platform-svg-wrapper {
    padding: 10px 15px;
    margin: 0 5px;
  }
  
  .platform-svg-wrapper img {
    content: url('../img/platfom-mobile.svg') !important;
    min-height: 200px !important;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile Menu Toggle - Regra base */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, rgba(92, 36, 255, 0.8));
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 0 10px rgba(92, 36, 255, 0.3);
}

.mobile-menu-toggle:hover span {
  background: linear-gradient(90deg, #ffffff, #5C24FF);
  box-shadow: 0 0 15px rgba(92, 36, 255, 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: linear-gradient(90deg, #5C24FF, #ffffff);
  box-shadow: 0 0 20px rgba(92, 36, 255, 0.6);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: linear-gradient(90deg, #ffffff, #5C24FF);
  box-shadow: 0 0 20px rgba(92, 36, 255, 0.6);
}

/* Regra para ocultar o menu hamburger em telas maiores */
@media screen and (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .navigation-menu {
    display: flex !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .navigation-menu {
    display: flex !important;
  }
  
  .navbar-container {
    padding: 15px 30px;
  }
  
  .logo {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .navigation-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;
    background: rgba(10, 10, 30, 0.98);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 24px 0 16px 0;
    z-index: 1002;
    gap: 18px;
    align-items: stretch;
    animation: fadeInMenu 0.3s;
  }
  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
  }
  
  .cases-section {
    padding: 60px 15px;
    overflow: visible;
    width: 100%;
    background-attachment: scroll;
    min-height: auto;
  }
  
  .cases-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-items: center;
  }
}

.case-item .item-9 {
  background: rgba(10, 10, 30, 0.92);
  border-radius: 16px;
  border: 1.5px solid rgba(92, 36, 255, 0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 32px 24px;
  transition: box-shadow 0.3s, border 0.3s;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.case-item .item-9:hover {
  box-shadow: 0 8px 40px rgba(92,36,255,0.22);
  border-color: #5C24FF;
}

@media screen and (min-width: 1200px) {
  .cases-section {
    padding-left: 0;
    padding-right: 0;
  }
}

.cases-grid {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  justify-items: center;
  align-items: stretch;
}

@media screen and (min-width: 1024px) {
  .cases-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cases-grid {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    justify-items: stretch;
    align-items: stretch;
  }
  .case-item {
    width: 100%;
  }
  .case-item .item-9 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 480px) {
  .cases-section {
    padding: 40px 10px;
  }
  
  .cases-grid {
    gap: 15px;
  }
  
  .case-item .item-9 {
    padding: 20px 16px;
  }
} 