
/**********************************************************
    cssfront.css
  
**********************************************************/


/* ------------------------------
   1) Ajustes no hero steps_image
   ------------------------------ */
.steps_image-wrapper {
  border-radius: 10%;
  overflow: hidden; /* Cortará tudo que exceder as bordas arredondadas */
}
.steps_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------
   2) Responsividade custom (antes em <style>):
   ----------------------------------------------- */
@media screen and (min-width: 992px) {
  .main-wrapper {
    padding-top: 0px !important;
  }
}

@media screen and (min-width: 991px) and (max-width: 1550px) {
  #special-for-nav .button-new.is-try-demo {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .new-home-hero_heading {
    font-size: 2rem;
    line-height: 39px;
  }
  .button-new.is-black.is-border-black {
    padding: 10px;
  }
}

/* --------------------------------------------
   3) Estilos do FAQ (antes no <style> do FAQ)
   -------------------------------------------- */
.section_faq {
  background: #f9fafb;
  padding: 40px 20px;
  font-family: inherit;
}
.faq_container {
  max-width: 800px;
  margin: 0 auto;
}
.faq_heading {
  font-size: 1.75rem;
  margin-bottom: 24px;
  text-align: center;
  color: #333;
  font-weight: 600;
}
.faq_item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.faq_question {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  position: relative;
  padding-right: 35px; /* espaço pro pseudo-ícone */
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq_question::after {
  content: "+";
  font-size: 1.2rem;
  color: #999;
  position: absolute;
  right: 0;
  transition: transform 0.2s ease;
}
.faq_question[aria-expanded="true"] {
  color: #369DF1;
}
.faq_question[aria-expanded="true"]::after {
  content: "–";
}
.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq_item.open .faq_answer {
  max-height: 200px; /* Ajuste se tiver mais texto */
}

/* -------------------------------------------------------------------
   4) CSS grande do “.investment-options_arrows” etc. (section_footer)
   ------------------------------------------------------------------- */
.investment-options_arrows {
  display: none; /* some setas por padrão */
}
@media (max-width: 768px) {
  .investment-options_arrows {
    display: flex; /* no mobile, exibe */
  }
}

/* Efeito hover no card */
.investment-card {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.investment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* Botão “Investir agora”, inicialmente oculto */
.invest-now-btn {
  display: none;
  margin-top: 16px;
  background-color: #f16335;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
/* Exibe o botão no hover do card */
.investment-card:hover .invest-now-btn {
  display: inline-block;
}

/* Variação do card */
.investment-card_variation {
  transition: font-size 0.2s ease, color 0.2s ease;
}
.investment-card:hover .investment-card_variation {
  font-size: 2rem;
  color: #111;
}

/* SparkLine definindo line e area */
.SparkLine__line {
  fill: none;
  stroke-width: 1px;
}
.SparkLine__line_positive {
  stroke: #35a947;
}
.SparkLine__line_negative {
  stroke: #e34828;
}
.SparkLine__area_positive {
  fill: url(#slPositiveGradient);
}
.SparkLine__area_negative {
  fill: url(#slNegativeGradient);
}

/* Container da seção de investimentos */
.investment-options_section {
  padding: 40px 20px;
  background-color: #fff;
  font-family: inherit;
}
.investment-options_container {
  max-width: 1200px;
  margin: 0 auto;
}
.investment-options_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.investment-options_title {
  font-size: 2rem;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
.investment-options_timeframe {
  display: flex;
  gap: 10px;
}
.timeframe-btn {
  background: #f6f7f8;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}
.timeframe-btn:not(.active):hover {
  background: #f6f7f8;
}
.timeframe-btn.active {
  background: #ced0d5;
}

/* Cards em grid desktop */
.investment-options_cards-wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .investment-options_cards-wrapper {
    display: flex;
    transition: transform 0.4s ease;
  }
  .investment-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .investment-options_arrows {
    display: flex;
    max-width: 500px;
    margin: 0 auto 16px auto;
  }
}

/* Marquee de pagamentos */
.fast-payment_marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fast-payment_marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.fast-payment_item {
  display: inline-block;
  margin-right: 30px;
  width: 150px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* .image-overlay-layer.hero-home (sobreposição do header) */
.image-overlay-layer.hero-home {
  background: rgba(0, 0, 0, 0.55) !important;
}

/* Aplicando shadow no H1 e p do hero */
.section_hero-home h1.text-color-white,
.section_hero-home p.text-color-white {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Custom Footer */
.custom-footer {
  background-color: #efeee7;
  border-top: 1px solid #eee;
  padding: 40px 0;
  font-family: 'Roboto', sans-serif;
  color: #666;
  position: relative;
}
.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}
.new-badge {
  background: #369DF1;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  padding: 2px 4px;
  margin-left: 4px;
  text-transform: uppercase;
}
/* Footer categories */
.footer-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
}
.footer-category-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}
.footer-category-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  color: #666;
  transition: color 0.2s ease;
}
.footer-link i {
  font-size: 16px;
  width: 18px;
  text-align: center;
}
.footer-link:hover {
  color: #369DF1;
}
/* Logo + Social */
.footer-logo-and-social {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.footer-logo-block img {
  max-height: 40px;
}
.footer-social-top {
  display: flex;
  gap: 20px;
  font-size: 20px;
  margin-left: auto;
}
.footer-social-top a {
  color: #666;
  text-decoration: none;
}
.footer-social-top a:hover {
  color: #369DF1;
}
/* Área inferior */
.footer-lower {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.risk-box {
  border: 1px solid #ccc;
  padding: 20px;
  background: #fff;
  flex: 1;
  min-width: 280px;
}
.risk-box h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}
.risk-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.risk-box a {
  color: #369DF1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.footer-security-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 280px;
}
.footer-security-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 10px 0 10px;
  text-align: center;
}
.footer-security-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 5px;
}
.footer-security-logo {
  max-height: 70px;
  display: inline-block;
}
.footer-security-text {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 10px auto 0 auto;
  line-height: 1.5;
  text-align: center;
}
.footer-copy {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
  text-align: center;
}
/* Powered By */
.powered-by-tc {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.powered-by-tc span {
  transition: opacity 0.2s ease;
}
.powered-by-tc img {
  height: 24px;
  transition: transform 0.3s ease;
}
.powered-by-tc:hover {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.0);
  background: transparent;
  transition: transform 0.9s ease;
  height: 90px;
  cursor: pointer;
  border: none;
}
.powered-by-tc:hover span {
  opacity: 0;
  pointer-events: none;
}
.powered-by-tc:hover img {
  transform: scale(4.8);
  transition: transform 0.8s ease, box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
}

/* ----------------------------------------------------
   Para remover inline style "opacity:0; transform:..."
   criamos a classe a seguir:
------------------------------------------------------- */
.platform_card-anim {
  opacity: 0;
  transform: translate3d(0px, 30px, 0px) scale3d(1,1,1)
              rotateX(0deg) rotateY(0deg) rotateZ(0deg)
              skew(0deg,0deg);
  transform-style: preserve-3d;
}

/* Fim do cssfront.css */