@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  --custom-primary: #f49431;
  --custom-secondary: #274259;
  --font-family: 'Rubik', var(--bs-font-sans-serif);
}

body {
  font-family: var(--font-family);
}

/* BOTÃO PADRÃO */
.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #fff;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #fff !important;
  filter: brightness(0.9) !important;
}

/* NAVBAR */
.navbar-custom {
  width: 100%;
  background-color: #fff;
  padding: 15px 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.navbar-logo img {
  max-height: 50px;
}

/* MENU */
.navbar-menu {
  display: flex;
  gap: 20px;
}

/* BOTÕES (links) */
.nav-btn {
  text-decoration: none;
  color: var(--custom-secondary);
  font-weight: 500;
  position: relative;
}

.nav-btn::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: var(--custom-primary);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.nav-btn:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTEÚDO */
.hero-container {
  position: relative;
  z-index: 2;
}

/* TEXTO */
.hero-content {
  color: #fff;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  padding: 0;
}

.hero-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* FORM */
.hero-form {
  display: flex;
  justify-content: center;
}

.form-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

.form-title {
  margin-bottom: 20px;
  color: var(--custom-secondary);
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background-color: #fff;
}

/* IMAGEM */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* TEXTO */
.about-content {
  padding-left: 30px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* BOTÃO */
.about-content .btn {
  margin-top: 10px;
}

/* PROBLEMS SECTION */
.problems-section {
  padding: 100px 0;
  background-color: #f6f6f6;
}

/* TEXTO */
.problems-content {
  padding-right: 30px;
}

.problems-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.problems-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* LISTA */
.problems-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.problems-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* IMAGEM */
.problems-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ECOSYSTEM SECTION */
.ecosystem-section {
  padding: 100px 0;
  background-color: #fff;
}

/* IMAGEM */
.ecosystem-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* TEXTO */
.ecosystem-content {
  padding-left: 30px;
}

.ecosystem-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.ecosystem-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* ACCORDION LIMPO */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0;
}

/* HEADER */
.accordion-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 20px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--custom-secondary);
  position: relative;
}

/* ÍCONE */
.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: 0.3s;
}

/* CONTEÚDO */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.accordion-content ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.accordion-content li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* CHECK PERSONALIZADO */
.accordion-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--custom-primary);
  font-size: 14px;
}

/* ATIVO */
.accordion-item.active .accordion-content {
  max-height: 400px;
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion {
  margin-bottom: 30px;
}

/* DIFFERENTIALS SECTION */
.differentials-section {
  padding: 100px 0;
  background-color: #f6f6f6;
  text-align: center;
}

/* HEADER */
.differentials-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.differentials-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

/* GRID */
.differentials-grid {
  margin-top: 40px;
  row-gap: 30px;
}

/* ITEM */
.differential-item {
  text-align: center;
  padding: 20px;
}

.differential-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.differential-item p {
  font-size: 15px;
  margin: 0;
}

/* FOOTER */
.differentials-footer {
  margin-top: 40px;
}

/* BENEFITS SECTION */
.benefits-section {
  padding: 100px 0;
  background-color: #fff;
}

/* TEXTO */
.benefits-content {
  padding-right: 30px;
}

.benefits-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.benefits-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* LISTA */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* IMAGEM */
.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* TARGET SECTION */
.target-section {
  padding: 100px 0;
  background-color: #fff;
}

/* IMAGEM */
.target-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* TEXTO */
.target-content {
  padding-left: 30px;
}

.target-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--custom-secondary);
  margin-bottom: 20px;
}

.target-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* LISTA */
.target-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.target-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* BACKGROUND */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* CONTEÚDO */
.cta-container {
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

/* TEXTO */
.cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer {
  background: #f6f6f6;
  padding: 30px 0 20px; 
  text-align: center;
}

.footer-logo img {
  max-width: 140px; 
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-social a {
  font-size: 20px; 
  color: #333;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--custom-primary);
}

.footer-copy {
  font-size: 12px; 
  color: #777;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* CONTAINER PADRÃO */
  .container {
    padding: 0 20px;
  }

  /* NAVBAR */
  .navbar-container {
    position: relative;
  }

  /* ESCONDE MENU PADRÃO */
  .navbar-menu {
    position: absolute;
    top: -500px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transition: 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  /* MENU ATIVO */
  .navbar-menu.active {
    top: 70px;
  }

  /* BOTÃO HAMBURGUER */
  .hamburger {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--custom-secondary);
    left: 0;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { bottom: 0; }

  /* ANIMAÇÃO X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
  }

  /* HERO */
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-form {
    margin-top: 30px;
  }

  /* SECTIONS PADRÃO */
  .about-section,
  .problems-section,
  .ecosystem-section,
  .differentials-section,
  .target-section,
  .cta-section {
    padding: 60px 0;
  }

  /* TEXTOS */
  h2 {
    font-size: 26px !important;
  }

  p {
    font-size: 14px;
  }

  /* REMOVE PADDINGS LATERAIS */
  .about-content,
  .problems-content,
  .ecosystem-content,
  .target-content {
    padding: 0;
    margin-top: 30px;
  }

  /* IMAGENS */
  .about-image,
  .problems-image,
  .ecosystem-image,
  .target-image {
    margin-bottom: 20px;
  }

  /* ACCORDION */
  .accordion-header {
    font-size: 16px;
  }

  /* GRID DIFERENCIAIS */
  .differentials-grid {
    margin-top: 20px;
  }

  .differential-item {
    padding: 10px;
  }

  /* CTA */
  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 14px;
  }

}