@charset "UTF-8";
.start {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #030512;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.start .logo img {
  height: 40px;
  width: auto;
}
.start nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}
@media (max-width: 992px) {
  .start nav ul {
    gap: 0;
  }
}
@media (max-width: 992px) {
  .start nav ul li {
    display: none;
  }
}
@media (max-width: 992px) {
  .start nav ul li:last-child {
    display: block;
  }
}
.start nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.start nav ul li a:hover {
  color: #00ff88;
}
.start nav ul li a.btn-principal {
  background: linear-gradient(90deg, #2ccbb9 0%, #36d1dc 100%);
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .start nav ul li a.btn-principal {
    font-size: 0.8rem;
    padding: 8px 15px !important;
  }
}

.hero {
  background-color: #0a0d1d;
  min-height: 80vh;
  padding: 80px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
}
.hero .hero-content {
  flex: 1;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero .hero-content h1 span {
  color: #2de2ce;
  display: block;
}
@media (max-width: 600px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero .hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .hero .hero-content p {
    margin: 0 auto 40px;
  }
}
.hero .cta-group {
  display: flex;
  gap: 15px;
}
@media (max-width: 600px) {
  .hero .cta-group {
    flex-direction: column;
  }
}
.hero .cta-group .btn-principal {
  background-color: #2de2ce;
  color: #0a0d1d;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hero .cta-group .btn-principal:hover {
  transform: translateY(-3px);
}
.hero .cta-group .btn-secundario {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
}
.hero .cta-group .btn-secundario:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero .hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-media img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.intro {
  padding: 100px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.intro h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .intro h2 {
    font-size: 2rem;
  }
}
.intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.intro p .intro-destaque {
  color: #f2e307;
  font-weight: 700;
}
@media (max-width: 600px) {
  .intro p {
    font-size: 1.1rem;
  }
}
.intro hr {
  width: 100px;
  border: none;
  height: 4px;
  background-color: #f2e307;
  margin: 40px auto 0;
  opacity: 1;
}

.scenario {
  padding: 100px 5%;
  background-color: #0a0d1d;
  display: flex;
  justify-content: center;
}
.scenario .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}
@media (max-width: 992px) {
  .scenario .grid-2 {
    grid-template-columns: 1fr;
  }
}
.scenario .scenario-card {
  background-color: #030512;
  padding: 45px 35px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.scenario .scenario-card h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.scenario .scenario-card ul {
  list-style: none;
  padding: 0;
}
.scenario .scenario-card ul li {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  font-weight: 300;
}
.scenario .scenario-card:first-of-type {
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.scenario .scenario-card:first-of-type h2 {
  color: #ff0000;
}
.scenario .scenario-card:first-of-type li::before {
  content: "";
  display: none;
}
.scenario .scenario-card:last-of-type {
  border: 1px solid rgba(0, 255, 136, 0.3);
}
.scenario .scenario-card:last-of-type h2 {
  color: #00ff88;
}
.scenario .scenario-card:last-of-type {
  box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.02);
}
.scenario .scenario-card:hover {
  transform: translateY(-5px);
}

.pillars {
  padding: 100px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.pillars .pillars-header {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}
.pillars .pillars-p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 60px;
  opacity: 0.8;
}
.pillars .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .pillars .grid-3 {
    grid-template-columns: 1fr;
  }
}
.pillars .pillar-item {
  background-color: #030512;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}
.pillars .pillar-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.pillars .pillar-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.pillars .pillar-item .icon--blue {
  background-color: #3b82f6;
}
.pillars .pillar-item .icon--green {
  background-color: #22c55e;
}
.pillars .pillar-item .icon--purple {
  background-color: #a855f7;
}
.pillars .pillar-item h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
}
.pillars .pillar-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pillars .pillar-item ul {
  list-style: none;
  padding: 0;
}
.pillars .pillar-item ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.7;
  padding-left: 15px;
  position: relative;
}
.pillars .pillar-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.8);
}

.solutions {
  padding: 100px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.solutions .section-title {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
}
.solutions hr {
  border: none !important;
  height: 3px !important;
  background-color: #f2e307;
  margin: 20px auto 50px auto !important;
  border-radius: 10px;
  opacity: 1;
}
.solutions .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .solutions .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .solutions .grid-4 {
    grid-template-columns: 1fr;
  }
}
.solutions .card-feature {
  background-color: #030512;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}
.solutions .card-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.solutions .card-feature h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.solutions .card-feature h3::before {
  margin-right: 10px;
}
.solutions .card-feature ul {
  list-style: none;
  padding: 0;
}
.solutions .card-feature ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.solutions .card-feature ul li:hover {
  opacity: 1;
}

.audience {
  padding: 80px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.audience h1 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
}
.audience .tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}
.audience .tag {
  background-color: rgba(255, 255, 255, 0.05);
  color: #10b981;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: default;
}
.audience .tag:hover {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  transform: translateY(-2px);
}

.process {
  padding: 100px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.process h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 60px;
  font-weight: 700;
}
.process .steps-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  counter-reset: step-counter;
  position: relative;
}
.process .steps-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 40px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.process .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  z-index: 2;
}
.process .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -5px;
  width: 42px;
  height: 42px;
  background-color: #0a0d1d;
  border: 2px solid #00ff88;
  color: #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.process .steps-list li strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.benefits {
  padding: 100px 5%;
  background-color: #0a0d1d;
  text-align: center;
}
.benefits h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 700;
}
.benefits .benefits-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 100px;
}
@media (max-width: 992px) {
  .benefits .benefits-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits .benefits-icons {
    grid-template-columns: 1fr;
  }
}
.benefits .benefits-icons span {
  background-color: #030512;
  padding: 30px 20px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.benefits .benefits-icons span::before {
  content: "✓";
  width: 35px;
  height: 35px;
  border: 2px solid #00ff88;
  color: #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.benefits .banner {
  background: linear-gradient(135deg, #050a1f 0%, #0a1128 100%);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}
.benefits .banner h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}
.benefits .banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.benefits .banner .btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 10px;
}
.benefits .banner .btn--white {
  background-color: #ffffff;
  color: #000000;
}
.benefits .banner .btn--white:hover {
  background-color: #00ff88;
  color: #ffffff;
}
.benefits .banner .btn--outline-white {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.benefits .banner .btn--outline-white:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer {
  padding: 40px 5%;
  background-color: #0a0d1d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
}
.footer img {
  height: 30px;
  width: auto;
  filter: brightness(0.8);
}
.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.6;
  line-height: 1.5;
}
.footer p:last-child {
  text-align: right;
}
@media (max-width: 600px) {
  .footer p:last-child {
    text-align: center;
  }
}

