/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: bottom;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Top Bar */
.top-bar {
  background-color: #ff6b00;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bolder;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation */
nav {
  background-color: #0a1628;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: bolder;
}

.nav-links a:hover {
  color: #ff6b00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  margin: 0;
  display: block;
  background: #0a1628;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  background: rgba(197, 211, 220, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.hero h1 .highlight {
  color: #ff6b00;
}

.hero .description {
  font-size: 24px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 600;
}

.hero .years {
  color: #ff6b00;
  font-weight: 800;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ec4700 0%, #ff7200 50%, #ff8725 100%);
  color: white;
  padding: 16px 66px;
  text-decoration: none;
  border-radius: 23px;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #ff8534;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Mockup Section */
.mockup-section {
  display: block;
  background: linear-gradient(180deg, #0a1628 0%, #0a1628 80%, #8d3f00 100%);
  padding: 60px 20px 0px;
}
.mockup-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
}
/* Problem Section */
.problem-section {
  display: block;
  background: linear-gradient(180deg, #8d3f00 0%, #f36d00 100%);
  padding: 60px 20px;
  text-align: center;
}

.problem-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.problem-section p {
  font-size: 24px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}

.problem-section span {
  font-weight: 800;
}

/* Features Grid Section */
.features-section {
  display: block;
  background-color: #ff6b00;
  padding: 60px 20px;
}

.features-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background-color: #0a1628;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* Platform Features Section */
.platform-section {
  display: block;
  background-color: #ff6b00;
  padding: 60px 20px;
}

.platform-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

/* Testimonials Section */
.testimonials-section {
  display: block;
  background-color: #031024;
  padding: 80px 20px;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #06142b;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #c5d3dc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0a1628;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.date {
  font-size: 12px;
  opacity: 0.7;
}

.stars {
  color: #ff6b00;
  font-size: 30px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  display: block;
  background-color: #ff6b00;
  padding: 80px 20px;
}

.faq-section h2 {
  text-align: left;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.3s;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 20px;
}

.chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.chevron svg {
  display: block;
}

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

.faq-answer-content {
  padding: 0 30px 25px;
  opacity: 0.9;
  line-height: 1.8;
  font-size: 15px;
}

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

/* Footer CTA */
.footer-cta {
  background-color: #0a1628;
  padding: 80px 20px;
  text-align: center;
  background-image: url("../public/images/logo.svg");
  background-size: 38rem; /* Tamanho que você quer */
  background-position: center center; /* Centraliza horizontal e vertical */
  background-repeat: no-repeat;
  position: relative;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(2, 12, 27, 0.9); /* Azul escuro com 70% de opacidade */
  z-index: 1;
}

.footer-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.footer-cta p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: #06142b;
  padding: 30px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6b00;
}

.copyright {
  color: #ff6b00;
  font-size: 20px;
  opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav-container {
    padding-inline: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

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

  .hero .description {
    font-size: 16px;
  }

  .hero-content {
    padding: 40px 25px;
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0a1628;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .mockup-placeholder {
    height: 300px;
  }

  .problem-section h2 {
    font-size: 28px;
  }

  .features-section h2,
  .platform-section h2,
  .testimonials-section h2,
  .faq-section h2,
  .footer-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

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

  .hero .description {
    font-size: 14px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 14px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .mockup-placeholder {
    height: 250px;
    font-size: 14px;
  }
}
