
/* RESET E CONFIGURAÇÕES BÁSICAS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  color: #444;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0 !important;
}

h1, h2, h3, h4, h5 {
  color: #333;
  font-weight: bold;
}

/* TIPOGRAFIA E TÍTULOS */
.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #0092d2;
  margin-bottom: 40px;
}

/* CONTAINERS E BOTÕES */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background-color: #0092d2;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #007bb0;
}

/* FORMULÁRIOS */
input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

/* HERO / BANNER COM OVERLAY */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 100px 20px;
}

/* CARDS */
.section-light {
  background-color: #ffffff;
  padding: 80px 20px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Aplica fundo branco APENAS se o card não tiver cor personalizada */
.card:not([class*="bg-"]) {
  background-color: #fff;
}

.card {
  flex: 1 1 400px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  padding: 30px;
  border-radius: 8px;
  width: 100%;
}

.card-title, .card h3 {
  font-size: 22px;
  color: #0273a4;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.card p {
  color: #444;
  line-height: 1.7;
}

/* CORES PERSONALIZADAS */
.card.bg-1 { background-color: #e6f7ff; }
.card.bg-2 { background-color: #e6f7ff; }
.card.bg-3 { background-color: #ccf0ff; }
.card.bg-4 { background-color: #ccf0ff; }
.card.bg-5 { background-color: #b3e8ff; }
.card.bg-6 { background-color: #b3e8ff; }
.card.bg-7 { background-color: #99e0ff; }

/* SEÇÃO DE LOGOS / CARROSSEL */
.section-logos {
  background-color: #f9f9f9;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-carousel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.logo-carousel img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.logo-carousel.scroll-horizontal {
  animation: scroll-horizontal 30s linear infinite;
}

.logo-carousel.reverse.scroll-horizontal {
  animation: scroll-horizontal-reverse 0s;
}

@keyframes scroll-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-horizontal-reverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(0%); }
}

/* OUTRAS SEÇÕES */
#institucional, #requisitos {
  background-color: #ffffff;
  padding: 80px 20px;
}

#podium {
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 0;
}

#podium img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
}

#requisitos {
  background-color: #f8f9fa;
  margin-top: 0 !important;
}

/* MENU FIXO DESKTOP */
#menu-fixo {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: top 0.3s ease;
}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  height: 60px;
}

.menu-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #0092d2;
}

.menu-nav a:hover {
  color: #007bb0;
}

.flags {
  display: flex;
  gap: 10px;
  font-size: 22px;
  margin-left: 15px;
}

.hamburguer {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburguer-line {
  width: 25px;
  height: 3px;
  background: #333;
}

/* AJUSTES GERAIS */
[id] {
  scroll-margin-top: 50px;
}

body > .skiptranslate {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

html {
  top: 0 !important;
}

/* CARROSSEL ESTÁTICO */
.logo-carousel-estatico {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hamburguer {
    display: flex;
  }

  .menu-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    width: 100vw;
    display: none;
    z-index: 9998;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

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

  .menu-nav a {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    color: #0092d2;
  }

  .flags {
    margin-top: 10px;
  }

  .overlay {
    padding: 60px 10px;
  }

  .card-grid {
    flex-direction: column;
    gap: 20px;
  }

.card:not([class*="bg-"]) {
  background-color: #fff;
}

.card {
  padding: 20px;
  margin: 0 auto;
  width: 90%;
}


  .hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .carousel-wrapper {
    padding: 20px 10px;
  }

  #carrossel-parceiros,
  #carrossel-patrocinadores {
    display: block;
    width: 100%;
    margin-bottom: 32px;
  }

  .logo-carousel {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center !important;
    animation: none !important;
    gap: 24px !important;
  }

  .logo-carousel img {
    max-width: 280px;
    margin: 0 auto 32px;
    display: block;
  }


  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
  }

  nav ul.active {
    display: flex;
  }
/* ÍCONES NOS CARDS - MOBILE */  
    .icon-wrapper {
    width: 100%;
    text-align: center;
  }

  .card-icon {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: auto;
  }
}

/* :::::::  FAQ – estilos globais ::::::: */
#faq-swcp {
  max-width: 960px;
  margin: 80px auto 40px;
}

#faq-swcp .faq-question {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  position: relative;
  color: #333;
}

#faq-swcp .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  right: 0;
  color: #0092d2;
  transition: transform 0.3s ease;
}

#faq-swcp .faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

#faq-swcp .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-weight: 400;
  color: #555;
}

#faq-swcp .faq-item.open .faq-answer {
  max-height: 1000px;
  margin: 10px 0 20px;
}

/* ::::::: CONTINUAÇÃO NORMAL DOS ESTILOS ::::::: */
@media (min-width: 769px) {
  .logo-carousel.scroll-horizontal {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    animation: scroll-horizontal 30s linear infinite;
    gap: 40px;
    align-items: center;
  }


  .logo-carousel.reverse.scroll-horizontal {
    animation: scroll-horizontal-reverse 30s linear infinite;
  }

 /* FIM DAS ANIMAÇÕES */
@keyframes scroll-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-horizontal-reverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(0%); }
}

.icon-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.card-icon {
  width: 80px;
  height: auto;
  display: inline-block;
}

