/* Reset e Base */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --primary-dark: #1a0033;
   --primary-purple: #330066;
   --primary-blue: #0033cc;
   --accent-green: #ff5c00;
   --accent-green-dark: #b34100;
   --text-white: #ffffff;
   --text-light: #e8e8e8;
   --text-gray: #888888;
   --bg-light: #f8f9fa;
   --bg-dark: #0a0a1a;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: "Poppins", sans-serif;
   line-height: 1.6;
   color: var(--text-white);
   background-color: var(--bg-light);
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* Header */
.header {
   background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-purple) 50%,
      var(--primary-blue) 100%
   );
   padding: 20px 0;
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo h1 {
   font-size: 28px;
   font-weight: 800;
   color: var(--text-white);
   display: flex;
   flex-direction: column;
   line-height: 1.2;
}

.logo h1 span {
   font-size: 14px;
   font-weight: 400;
   color: var(--accent-green);
   letter-spacing: 2px;
}

.nav ul {
   display: flex;
   list-style: none;
   gap: 30px;
}

.nav ul li a {
   color: var(--text-white);
   text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
   position: relative;
}

.nav ul li a::after {
   content: "";
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent-green);
   transition: width 0.3s ease;
}

.nav ul li a:hover {
   color: var(--accent-green);
}

.nav ul li a:hover::after {
   width: 100%;
}

.header-cta {
   background: var(--accent-green);
   color:white;
   padding: 12px 25px;
   text-decoration: none;
   font-weight: 700;
   font-size: 14px;
   border-radius: 8px;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.header-cta:hover {
   background: var(--accent-green-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

.mobile-menu-toggle {
   display: none;
   flex-direction: column;
   background: none;
   border: none;
   cursor: pointer;
   gap: 5px;
}

.mobile-menu-toggle span {
   width: 25px;
   height: 3px;
   background: var(--text-white);
   transition: all 0.3s ease;
}

/* Hero Section */
.hero {
   background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-purple) 50%,
      var(--primary-blue) 100%
   );
   padding: 150px 0 100px;
   position: relative;
   overflow: hidden;
}

.hero-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: radial-gradient(
         circle at 20% 50%,
         rgba(0, 255, 136, 0.1) 0%,
         transparent 50%
      ),
      radial-gradient(
         circle at 80% 80%,
         rgba(0, 51, 204, 0.1) 0%,
         transparent 50%
      );
   pointer-events: none;
}

.hero-content {
   position: relative;
   z-index: 1;
}

.hero-title {
   font-size: 48px;
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 20px;
   color: var(--text-white);
}

.highlight {
   color: var(--text-white);
   font-style: italic;
}

.highlight-green {
   color: var(--accent-green);
}

.highlight-purple {
   color: #cc66ff;
}

.hero-subtitle {
   font-size: 20px;
   color: var(--text-light);
   margin-bottom: 10px;
   font-weight: 600;
}

.hero-description {
   font-size: 18px;
   color: var(--text-light);
   margin-bottom: 40px;
   line-height: 1.8;
}

.hero-features {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-bottom: 40px;
}

.feature-box {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 25px 20px;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.feature-box:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
}

.feature-box p {
   font-size: 15px;
   line-height: 1.6;
}

.hero-video {
   margin: 40px 0;
   display: flex;
   justify-content: center;
}

.video-placeholder {
   background: linear-gradient(
      135deg,
      rgba(0, 255, 136, 0.2) 0%,
      rgba(0, 51, 204, 0.2) 100%
   );
   border: 2px solid var(--accent-green);
   border-radius: 15px;
   padding: 60px 40px;
   text-align: center;
   max-width: 600px;
   width: 100%;
   cursor: pointer;
   transition: all 0.3s ease;
}

.video-placeholder:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.video-placeholder svg {
   stroke: var(--accent-green);
   margin-bottom: 20px;
}

.video-placeholder p {
   font-size: 18px;
   font-weight: 600;
   color: var(--text-white);
}

.hero-ctas {
   display: flex;
   gap: 20px;
   justify-content: center;
   margin-top: 40px;
}

.cta-button {
   color: white;
   display: inline-block;
   padding: 18px 40px;
   text-decoration: none;
   font-weight: 700;
   font-size: 16px;
   border-radius: 8px;
   transition: all 0.3s ease;
   border: none;
   cursor: pointer;
   text-align: center;
}

.cta-button.primary {
   background: var(--accent-green);

   box-shadow: 0 10px 30px rgba(255, 145, 0, 0.3);
}

.cta-button.primary:hover {
   background: var(--accent-green-dark);
   transform: translateY(-3px);
   
   box-shadow: 0 10px 30px rgba(255, 145, 0, 0.4);
}

.cta-button.secondary {
   background: transparent;
   color: var(--text-white);
   border: 2px solid var(--text-white);
}

.cta-button.secondary:hover {
   background: rgba(255, 255, 255, 0.1);
   transform: translateY(-3px);
}

.center-btn {
   display: block;
   width: fit-content;
   margin: 40px auto;
}

/* Soluções Section */
.solucoes {
   padding: 100px 0;
   background: var(--bg-light);
}

.section-title {
   font-size: 42px;
   font-weight: 800;
   text-align: center;
   color: var(--primary-dark);
   margin-bottom: 20px;
}

.section-description {
   text-align: center;
   color: var(--text-gray);
   font-size: 18px;
   margin-bottom: 40px;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

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

.solucao-card {
   background: var(--text-white);
   padding: 40px 30px;
   border-radius: 15px;
   text-align: center;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.solucao-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solucao-icon {
   margin-bottom: 20px;
}

.solucao-icon svg {
   stroke: var(--primary-purple);
}

.solucao-card h3 {
   font-size: 20px;
   font-weight: 700;
   color: var(--primary-dark);
   line-height: 1.4;
}

/* Plataformas Section */
.plataformas {
   padding: 100px 0;
   background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-purple) 100%
   );
}

.plataformas .section-title {
   color: var(--text-white);
}

.plataformas .section-description {
   color: var(--text-light);
}

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

.plataforma-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 40px 30px;
   border-radius: 15px;
   text-align: center;
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.plataforma-card:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
   border-color: var(--accent-green);
}

.plataforma-card h3 {
   font-size: 24px;
   font-weight: 700;
   color: var(--text-white);
   margin-bottom: 10px;
}

.plataforma-card p {
   color: var(--text-light);
   font-size: 15px;
}

/* Contato Section */
.contato {
   padding: 100px 0;
   background: var(--bg-light);
}

.contato-form {
   max-width: 600px;
   margin: 0 auto;
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
   display: block;
   color: var(--primary-dark);
   font-weight: 600;
   margin-bottom: 8px;
   font-size: 15px;
}

.form-group input,
.form-group textarea {
   width: 100%;
   padding: 15px 20px;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   font-size: 16px;
   font-family: "Poppins", sans-serif;
   transition: all 0.3s ease;
   color: var(--primary-dark);
}

.form-group input:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--accent-green);
   box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

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

.contato-form .cta-button {
   width: 100%;
   margin-top: 10px;
}

.form-privacy {
   text-align: center;
   color: var(--text-gray);
   font-size: 14px;
   margin-top: 15px;
}

/* Sobre Section */
.sobre {
   padding: 100px 0;
   background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-purple) 100%
   );
}

.sobre .section-title {
   color: var(--text-white);
   text-align: left;
}

.sobre-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.sobre-text p {
   color: var(--text-light);
   font-size: 16px;
   margin-bottom: 20px;
   line-height: 1.8;
}

.sobre-stats {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.stat-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 30px 20px;
   border-radius: 15px;
   text-align: center;
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.stat-card:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
}

.stat-card h4 {
   font-size: 36px;
   font-weight: 800;
   color: var(--accent-green);
   margin-bottom: 10px;
}

.stat-card p {
   font-size: 14px;
   color: var(--text-light);
}

/* FAQ Section */
.faq {
   padding: 100px 0;
   background: var(--bg-light);
}

.faq .section-title {
   color: var(--primary-dark);
}

.faq-list {
   max-width: 800px;
   margin: 0 auto;
}

.faq-item {
   background: var(--text-white);
   border-radius: 10px;
   margin-bottom: 15px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
   width: 100%;
   background: none;
   border: none;
   padding: 25px 30px;
   text-align: left;
   font-size: 18px;
   font-weight: 600;
   color: var(--primary-dark);
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.3s ease;
}

.faq-question:hover {
   color: var(--accent-green);
}

.faq-icon {
   font-size: 24px;
   font-weight: 300;
   color: var(--accent-green);
   transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
   transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
   max-height: 500px;
}

.faq-answer p {
   padding: 0 30px 25px;
   color: var(--text-gray);
   line-height: 1.8;
   font-size: 15px;
}

/* Footer */
.footer {
   background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--bg-dark) 100%
   );
   padding: 60px 0 30px;
}

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

.footer-logo h2 {
   font-size: 32px;
   font-weight: 800;
   color: var(--text-white);
   margin-bottom: 15px;
   display: flex;
   flex-direction: column;
   line-height: 1.2;
}

.footer-logo h2 span {
   font-size: 16px;
   font-weight: 400;
   color: var(--accent-green);
   letter-spacing: 2px;
}

.footer-address {
   color: var(--text-light);
   font-size: 15px;
   line-height: 1.8;
}

.footer-links h4,
.footer-legal h4 {
   color: var(--text-white);
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 15px;
}

.footer-links ul,
.footer-legal ul {
   list-style: none;
}

.footer-links ul li,
.footer-legal ul li {
   margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
   color: var(--text-light);
   text-decoration: none;
   transition: color 0.3s ease;
   font-size: 15px;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
   color: var(--accent-green);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
   text-align: center;
}

.footer-bottom p {
   color: var(--text-gray);
   font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
   position: fixed;
   bottom: 30px;
   right: 30px;
   background: #25d366;
   color: white;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
   transition: all 0.3s ease;
   z-index: 999;
}

.whatsapp-float:hover {
   transform: scale(1.1);
   box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
   .nav {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      background: var(--primary-dark);
      transition: left 0.3s ease;
      padding: 20px 0;
   }

   .nav.active {
      left: 0;
   }

   .nav ul {
      flex-direction: column;
      gap: 0;
   }

   .nav ul li {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .mobile-menu-toggle {
      display: flex;
   }

   .header-cta {
      display: none;
   }

   .hero-features {
      grid-template-columns: 1fr;
   }

   .hero-ctas {
      flex-direction: column;
   }

   .solucoes-grid {
      grid-template-columns: 1fr;
   }

   .plataformas-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .sobre-content {
      grid-template-columns: 1fr;
   }

   .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
   }
}

@media (max-width: 640px) {
   .hero {
      padding: 120px 0 60px;
   }

   .hero-title {
      font-size: 32px;
   }

   .hero-subtitle {
      font-size: 18px;
   }

   .section-title {
      font-size: 28px;
   }

   .plataformas-grid {
      grid-template-columns: 1fr;
   }

   .sobre-stats {
      grid-template-columns: 1fr;
   }

   .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
   }
}

/* Animações */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-up {
   animation: fadeInUp 0.6s ease-out;
}
