.elementor-460 .elementor-element.elementor-element-ceab66b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-460 .elementor-element.elementor-element-a8e2e86{--display:flex;}.elementor-460 .elementor-element.elementor-element-6db0cb8{--spacer-size:50px;}.elementor-460 .elementor-element.elementor-element-3944311{--display:flex;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--margin-top:0px;--margin-bottom:20px;--margin-left:0px;--margin-right:0px;}.elementor-460 .elementor-element.elementor-element-169caac{text-align:center;}.elementor-460 .elementor-element.elementor-element-169caac .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-secondary );}.elementor-460 .elementor-element.elementor-element-1695122{text-align:center;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-secondary );}.elementor-460 .elementor-element.elementor-element-fab9c26{--spacer-size:50px;}.elementor-460 .elementor-element.elementor-element-rcmig7a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:992px){.elementor-460 .elementor-element.elementor-element-6db0cb8{--spacer-size:25px;}.elementor-460 .elementor-element.elementor-element-fab9c26{--spacer-size:25px;}}/* Start custom CSS */.elementor-460{--e-global-color-primary:#45C1C6!important;--e-global-color-secondary:#09344C!important;--e-global-color-text:#025A7C!important;--e-global-color-accent:#475569!important;}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.cenarios-grid,
.graficos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cenario-bloco {
  border: 1px solid var(--e-global-color-82daa46);
  border-radius: 8px;
  padding: 1.5rem;
}

.cenario-bloco h3 {
  color: #09344C;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  min-height: 88px;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #025A7C;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
}

.form-group .disabled-input {
  background-color: #f1f3f5;
  color: #868e96;
  padding: 0.8rem 1rem;
  border: 1px solid var(--e-global-color-82daa46);
  border-radius: 8px;
  font-size: 1rem;
  cursor: not-allowed;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked + label {
  background-color: #45C1C6;
  color: white;
  border-color: #45C1C6;
}

.btn-calcular {
  width: 100%;
  max-width: 320px;
  background: #45C1C6;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
}

#resultado {
  display: none;
}

.analise-narrativa {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.analise-narrativa h3 {
  color: #09344C;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.conclusao-final {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
}

.conclusao-final.vantagem {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--e-global-color-718a3a0);
}

.conclusao-final.desvantagem {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--e-global-color-3bd7c52);
}

.conclusao-final span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #475569;
  margin-top: 0.5rem;
}

.valor-destaque {
  color: #025A7C;
  font-weight: 700;
}

.valor-positivo {
  color: var(--e-global-color-718a3a0);
  font-weight: 700;
}

.valor-negativo {
  color: var(--e-global-color-3bd7c52);
  font-weight: 700;
}

.tabela-desconto {
  margin-top: 3rem;
}

.tabela-desconto h4 {
  text-align: center;
  color: #09344C;
  font-size: 1.2rem;
}

.tabela-desconto table {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  border-collapse: collapse;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.tabela-desconto th,
.tabela-desconto td {
  padding: 0.8rem;
  border: 1px solid var(--e-global-color-82daa46);
}

.tabela-desconto th {
  background-color: #09344C;
  color: white;
  font-weight: 400;
}

/* Estilos para o CTA e Artigo */
.cta-card {
  text-align: center;
  border: 1px solid var(--e-global-color-82daa46);
  padding: 4rem;
  border-radius: 12px;
  margin-top: 3rem;
  background-color: #09344C;
}

.cta-card h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  display: block;
  max-width: 700px;
  color: #fff;
  margin: 0 auto 1.5rem auto;
  padding-bottom: 1rem;
}

.cta-card p {
  color: white;
  margin-bottom: 50px;
}

.cta-card a {
  background-color: #45C1C6;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.cta-card a:hover {
  opacity: 0.9;
}

.article-section {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.article-section h2 {
  color: #09344C;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
}

.article-section p {
  margin-bottom: 1rem;
}

/* Ajustes para telas médias */
@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
  .cenario-bloco {
    padding: 1rem;
  }
  .analise-narrativa {
    font-size: 1rem;
  }
}

/* Ajustes para telas pequenas */
@media (max-width: 575px) {
  .cenarios-grid,
  .graficos-grid {
    gap: 1.2rem;
  }
  .form-group {
    min-height: auto;
  }
  .btn-calcular {
    font-size: 1rem;
    padding: 0.8rem;
  }
  .cta-card {
    padding: 1.5rem;
  }
  .cta-card h4 {
    font-size: 1.1rem;
  }
  .cta-card a {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}/* End custom CSS */