/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

/* *** MAIN *** */
:root {
  --blue-main-universo: #0051ff;
  --blue-dark-universo: #002264;
  --blue-deep-universo: #030336;
  --blue-light-universo: #6effff;
  --grey-light-universo: #eff1fa;
}
@font-face {
  font-family: "Universo Sans";
  src: url("/wp-content/themes/salient-child/fonts/UNIVERSOSans-Regular.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/UNIVERSOSans-Regular.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/UNIVERSOSans-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A Light";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Light.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Light.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Light.ttf")
      format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A LightIt";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-LightItalic.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-LightItalic.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-LightItalic.ttf")
      format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular A Regular";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A RegularIt";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular A Semibold";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Semibold.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Semibold.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Semibold.ttf")
      format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A SemiboldIt";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-SemiboldItalic.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-SemiboldItalic.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-SemiboldItalic.ttf")
      format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Euclid Circular A Bold";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Bold.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Bold.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-Bold.ttf")
      format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A BoldIt";
  src: url("/wp-content/themes/salient-child/fonts/EuclidCircularA-BoldItalic.woff")
      format("woff"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-BoldItalic.otf")
      format("opentype"),
    url("/wp-content/themes/salient-child/fonts/EuclidCircularA-BoldItalic.ttf")
      format("truetype");
  font-weight: bold;
  font-style: italic;
}
/* Loader */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #0051ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* FIM Loader */
.hide { display: none !important; }
.comments-section { display: none !important; }
/* *** END MAIN*** */

/* *** HEADER *** */
#search-btn { padding: 10px; }
.menu-login a, .menu-adira a {
  font-family: "Euclid Circular A Regular" !important;
  padding: 10px 30px !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.menu-login a:hover, .menu-adira a:hover { opacity: 0.7; }
.menu-login a {
  border: 2px solid white;
} 
.menu-adira a {
  background: var(--blue-deep-universo);
  border: 2px solid var(--blue-deep-universo);
}
.menu-login a span::after, .menu-adira a span::after { display: none !important; }
body.scrolled #floatingMenu {
  position: fixed;
}
#floatingMenu {
  width: 300px;
  position: absolute;
  top: 2vh;
  right: 4vh;
  z-index: 9999;
  text-align: right;
  border-radius: 25px;
}
#floatingMenuHead {
  background: var(--blue-dark-universo) url(imgs/menu.svg) left 15px center
    no-repeat;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 15px 10px 10px;
  -webkit-border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-topright: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#floatingMenuHead:hover {
  cursor: pointer;
}
#menu-flutuante {
  width: 300px;
  margin: auto;
  padding: 0;
}
#floatingMenu ul.sub-menu {
  display: none;
  position: static;
  left: 0;
  top: 100%;
  z-index: 10000;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}
#floatingMenu li {
  cursor: pointer;
  list-style: none;
  position: relative;
}
#floatingMenu li.active > ul.sub-menu {
  display: block;
  max-height: 500px;
}
#floatingMenu li:focus-within > ul.sub-menu {
  display: block;
}
#floatingMenu a {
  display: inline-block;
  width: 100%;
  color: white;
  padding: 15px;
  font-size: 16px;
  text-decoration: none;
}
#floatingMenu ul.sub-menu a {
  padding: 12px 15px 10px 15px;
}
#floatingMenu li.menu-item-has-children ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
#floatingMenu .menu > li:first-child {
  background-color: var(--blue-deep-universo);
  background-color: color-mix(
    in srgb,
    var(--blue-deep-universo) 25%,
    transparent
  );
}
#floatingMenu .menu > li:first-child > a:first-of-type {
  background: url(imgs/cartao-credito.svg) 15px center no-repeat,
    url(imgs/icon-plus.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:first-child.active > a:first-of-type {
  background: url(imgs/cartao-credito.svg) 15px center no-repeat,
    url(imgs/icon-less.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(2) {
  background-color: var(--blue-deep-universo);
  background-color: color-mix(
    in srgb,
    var(--blue-deep-universo) 50%,
    transparent
  );
}
#floatingMenu .menu > li:nth-child(2) > a:first-of-type {
  background: url(imgs/credito.svg) left 15px center no-repeat,
    url(imgs/icon-plus.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(2).active > a:first-of-type {
  background: url(imgs/credito.svg) left 15px center no-repeat,
    url(imgs/icon-less.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(3) {
  background-color: var(--blue-deep-universo);
  background-color: color-mix(
    in srgb,
    var(--blue-deep-universo) 70%,
    transparent
  );
}
#floatingMenu .menu > li:nth-child(3) > a:first-of-type {
  background: url(imgs/seguros.svg) left 15px center no-repeat,
    url(imgs/icon-plus.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(3).active > a:first-of-type {
  background: url(imgs/seguros.svg) left 15px center no-repeat,
    url(imgs/icon-less.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(4) {
  background-color: var(--blue-deep-universo);
  background-color: color-mix(
    in srgb,
    var(--blue-deep-universo) 90%,
    transparent
  );
}
#floatingMenu .menu > li:nth-child(4) > a:first-of-type {
  background: url(imgs/poupanca-investimento.svg) left 15px center no-repeat,
    url(imgs/icon-plus.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-child(4).active > a:first-of-type {
  background: url(imgs/poupanca-investimento.svg) left 15px center no-repeat,
    url(imgs/icon-less.svg) center right 15px no-repeat;
  background-size: auto, 22px 22px;
  padding-right: 44px;
}
#floatingMenu .menu > li:nth-last-child(2),
#floatingMenu .menu > li:last-child {
  background-color: var(--blue-deep-universo);
  background-color: color-mix(
    in srgb,
    var(--blue-deep-universo) 100%,
    transparent
  );
}
#floatingMenu .menu > li:nth-last-child(2) {
  width: 55%;
  float: left;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-left-radius: 25px;
}
#floatingMenu .menu > li:last-child {
  width: 45%;
  float: right;
  -webkit-border-bottom-right-radius: 25px;
  -moz-border-radius-bottomright: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 5px;
}
#floatingMenu .menu > li:nth-last-child(2) a,
#floatingMenu .menu > li:last-child a {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #6effff;
  text-decoration-thickness: 2px;
}
/* #floatingMenu .menu > li:not(:first-child, :nth-last-child(2), :last-child) {
  -webkit-border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-topright: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  margin-top: -20px;
  padding-top: 20px;
}*/
#floatingMenu ul.sub-menu > li:first-child a {
  border-bottom: 1px solid var(--blue-light-universo);
  width: 90%;
  margin-right: 15px;
  padding-right: 0;
}
#floatingMenu .menuBtn a {
  width: auto;
  background: var(--blue-light-universo);
  color: var(--blue-deep-universo);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  margin: 10px 5% 20px auto;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* Modo compacto após scroll */
body.scrolled #menu-flutuante {
  overflow: hidden;
  height: 0;
  transition: height 0.45s ease; /* velocidade ao fechar */
}
body.scrolled #floatingMenu {
  position: fixed;
  opacity: 1;
  transform: translateY(7px);
}
/* Durante a abertura (mais lento + delay opcional) */
body.scrolled #menu-flutuante.is-opening {
  transition: height 0.5s ease 0.1s;
}
/* Durante o fecho (mais rápido) */
body.scrolled #menu-flutuante.is-closing {
  transition: height 0.2s ease 0s;
}
body:not(.home) #floatingMenu {
  position: fixed;
  opacity: 1;
  transform: translateY(7px);
}
body:not(.home) #menu-flutuante {
  overflow: hidden;
  height: 0;
  transition: height 0.45s ease;
}
body:not(.home) #menu-flutuante.open {
  height: auto;
  overflow: visible;
}
/* Teimoso Chamada */
#ligar {
  display: none;
  opacity: 0;
  background: var(--blue-light-universo) url(imgs/icon_agente_dark.svg) left 15px center no-repeat;
  color: var(--blue-deep-universo);
  position: fixed;
  bottom: 8vh;
  right: 0;
  z-index: 999;
  text-align: left;
  padding: 10px 40px 10px 60px;
  -webkit-border-top-left-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  transition: box-shadow 0.2s ease-in-out; 
  transform: translateX(100px);
}
body.page-id-142 #ligar,body.page-id-331 #ligar,body.page-id-180 #ligar,body.page-id-308 #ligar,
body.page-id-163 #ligar,body.page-id-319 #ligar,body.page-id-261 #ligar,body.page-id-345 #ligar {
  display: block;
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 3s;
}
#ligar p {
  font-weight: bold;
  padding: 0;
}
.popLigar p { padding: 0 !important; }
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#ligar:hover { box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); }
/* Fim Teimoso Chamada*/
/* *** END HEADER *** */

/* *** BTNS & Misc *** */
.bold { font-weight: bold; }
.nectar-button {
  background: url(imgs/icon-arrow-btn-white.svg) center right 10px no-repeat;
  padding: 15px 45px 13px 20px !important;
  font-size: 16px !important;
  font-weight: normal !important;
  background-size: 30px;
}
.nectar-button.no-arrow {
  padding: 10px 45px !important;
  font-size: 16px !important;
  font-weight: normal !important;
}
.nectar-button.see-through:not(
    .nectar-button.see-through.dark-blue,
    .nectar-button.see-through.no-arrow
  ) {
  background: url(imgs/icon-arrow-btn-blue.svg) center right 10px no-repeat;
  border-width: 1px !important;
}
.nectar-button.see-through.dark-blue {
  background: url(imgs/icon-arrow-btn-white.svg) center right 10px no-repeat;
  border-width: 1px !important;
}
.nectar-button.white-button {
  background: url(imgs/icon-arrow-btn-dark-blue.svg) center right 10px no-repeat;
  border-width: 1px !important;
}
.nectar-button.soft-blue-button {
  background: url(imgs/icon-arrow-btn-blue.svg) center right 10px no-repeat;
  border-width: 1px !important;
  background-size: 30px;
}
.nectar-button.no-bg,
.nectar-button.see-through.no-arrow {
  background: none !important;
  border-width: 1px !important;
}
.nectar-button.no-arrow.active {
  background: #030336 !important;
  color: #fff !important;
  border-width: 0px !important;
}
.btnIcon a {
  background: url(imgs/icon-arrow-btn-blue.svg) center right no-repeat;
  padding: 10px 30px 10px 10px;
}
.ml-25 {
  margin-left: 25px;
}
.fs13 {
  font-size: 13px;
}
.border-white {
  border: 1px solid white !important;
}
.border-dark {
  border: 1px solid #030336 !important;
}
.w-100 {
  width: 100% !important;
}
.w-100 a {
  width: 100% !important;
}
#error-404 a {
  background: var(--blue-main-universo) url(imgs/icon-arrow-btn-white.svg)
    center right 10px no-repeat !important;
  padding: 15px 30px 13px 35px !important;
  font-size: 16px !important;
  font-weight: normal !important;
}
#error-404 .icon-button-arrow {
  display: none;
}
.txtSmall {
  font-size: 13px;
}
.txtArrow {
}
.txtWhiteArrow a {
  color: white !important;
}
.txtWhiteArrow a {
  background: url(imgs/icon_arrow-right.svg) center right no-repeat;
  padding-right: 30px;
}
.txtWhiteArrow a:hover {
  text-decoration: underline;
}
.txtPlus a {
  background: url(imgs/icon-plus-blue.svg) center right no-repeat;
  padding-right: 30px;
}
.txtPlus a:hover {
  text-decoration: underline;
  color: var(--blue-main-universo);
}
.main-content ul li,
.main-content ol li {
  line-height: 25px;
  padding-bottom: 10px;
}
.main-content ol[type="a"] li {
  list-style: lower-alpha;
}
body:not(.woocommerce-cart) .main-content table,
body:not(.woocommerce-cart) .main-content table tr:nth-child(2n + 1) {
  background: transparent !important;
}
.main-content table thead {
  background: var(--blue-main-universo);
  color: white;
}
.main-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
}
.main-content table thead tr th { vertical-align: middle; }
.main-content table thead tr:first-child th:first-child { border-top-left-radius: 20px; }
.main-content table thead tr:first-child th:last-child { border-top-right-radius: 20px; }
.main-content table tbody tr:last-child td:first-child { border-bottom-left-radius: 20px; }
.main-content table tbody tr:last-child td:last-child { border-bottom-right-radius: 20px; }
.iwithtext .iwt-text { padding: 8px 0 0 45px; }
/* Popups */
body.popmake-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}
.popmake { padding: 25px 10px !important; }
.popmake .wpb_row { margin: auto 2% 1% 2%; }
.popmake-overlay, .popmake-popup { overflow-x: hidden !important; }
.popmake-content {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 90vh !important;
    box-sizing: border-box !important;
}
.popmake-content::-webkit-scrollbar { width: 8px; }
.popmake-content::-webkit-scrollbar-track { background: transparent; }
.popmake-content::-webkit-scrollbar-thumb {
  background-color: #EFF1FA;
  border-radius: 4px;
}
/* .popmake-content::-webkit-scrollbar-track {
  background: #EFF1FA;
  border-radius: 4px;
} */
.popmake-close {
  margin: 10px 25px;
  padding: 10px 35px 10px 15px !important;
} 
.popmake-close::after {
  content: "";
  position: absolute;
  background: url("imgs/icon_close.svg") no-repeat center / contain !important;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
}
.popmake-close:hover { opacity: .7; }
.popmake p { padding: 0 30px 0 30px; }
.popmake .row-bg-wrap {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* END Popups*/
/* *** END BTNS & Misc *** */

/* *** Adesao - App *** */
#como-aderir img {
  max-width: 60px;
}
#como-aderir strong {
  font-size: 20px;
}
/* *** END Adesao - App *** */

/* *** FAQs*** */
.toggle {
  background: white;
  padding: 0 30px !important;
  margin-bottom: 15px !important;
  border-bottom: none !important;
  -webkit-border-radius: 40px !important;
  -moz-border-radius: 40px !important;
  border-radius: 40px !important;
}
.toggle > .toggle-title a {
  font-size: 18px;
  color: var(--blue-deep-universo);
}
div[data-style*="minimal"] .toggle > .toggle-title i {
  border-color: var(--blue-deep-universo);
}
div[data-style="minimal"] .toggle > .toggle-title i:before,
div[data-style="minimal"] .toggle > .toggle-title i:after {
  background: var(--blue-deep-universo);
}
.faqs .accordion { margin-bottom: 0; }
.faqs .accordion:nth-of-type(2) { display: none; }
#verMais, #verMenos {
  font-size: 16px;
  font-family: Euclid Circular A Light;
  border: none;
  color: var(--blue-main-universo);
  padding: 10px 30px 10px 10px;
}
#verMais { background: url(imgs/icon-plus-blue.svg) center right no-repeat; }
#verMenos { background: url(imgs/icon-minus-blue.svg) center right no-repeat; }
#verMais:hover, #verMenos:hover {
  cursor: pointer;
  opacity: .7;
}
/* *** END FAQs *** */

/* *** Páginas Informações *** */
.infosAccord a.toggle-heading {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--blue-deep-universo);
  margin-bottom: 20px;
}
.infosAccord .toggle.open a.toggle-heading {
  color: var(--blue-main-universo) !important;
  border-bottom: 1px solid var(--blue-main-universo);
}
.infosAccord .toggle.open i {
  border-color: var(--blue-main-universo) !important;
}
.infosAccord .toggle.open i:before,
.infosAccord .toggle.open i:after {
  background-color: var(--blue-main-universo) !important;
}
.infosAccord .toggle {
  background: var(--grey-light-universo);
}
/* *** FIM Páginas Informações *** */

/* *** FOOTER *** */
#footerMain p,
#footerSec p,
#footerMain a,
#footerSec a {
  font-size: 14px;
}
#footerMain a,
#footerSec a {
  color: white;
}
#footerMain a:hover,
#footerSec a:hover {
  color: var(--blue-light-universo);
}
#footerCopys p,
#footerCopys a {
  font-size: 10px;
  color: var(--blue-dark-universo);
}
#footerCopys a:hover {
  text-decoration: underline;
}
/* *** END FOOTER *** */

/* CARDS */
.br-top-20 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.br-bottom-20 {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.flex-row .column_container {
  align-items: center !important;
  display: flex !important;
}
.flex-row .vc_col-sm-2 {
  justify-content: flex-end;
}
/* END CARDS */

/* LISTA */
.list-seguros li {
  list-style: none !important; /* remove bullets padrões */
  padding-left: 0; /* remove indentação */
}
.list-seguros li {
  position: relative;
  padding-left: 28px; /* espaço para o ícone */
  margin-bottom: 8px;
}
.list-seguros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  width: 24px; /* tamanho do ícone */
  height: 24px;
  background: url("imgs/icon_round-check.svg") no-repeat center;
  background-size: contain;
}
/* END LISTA */

/* FLUENT FORMS */
.simulador {
  padding: 20px;
  width: 100%;
  max-width: 100%;
}
.container-fluent-form-split .ff-t-cell.ff-t-column-1 {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px !important;
}
.ff-t-container {
  padding-top: 1%;
}
.container-fluent-form-split .ff-t-cell.ff-t-column-1 .ff-el-group {
  flex: 1 !important;
}
/* títulos/valores */
.simulador .label {
  font-weight: bold;
}
.simulador .value {
  font-weight: bold;
  color: #0056ff;
  float: right;
}
/* RANGE base */
.simulador input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd; /* cor do lado direito (não preenchido) */
  border-radius: 5px;
  outline: none;
  margin: 10px 0;
}
/* TRACK (Chrome/Safari/Edge Chromium) – gradiente com “fill” azul à esquerda */
.simulador input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    #0056ff 0%,
    #0056ff calc((var(--val) - var(--min)) / (var(--max) - var(--min)) * 100%),
    #ddd calc((var(--val) - var(--min)) / (var(--max) - var(--min)) * 100%),
    #ddd 100%
  );
}
/* THUMB (Chrome/Safari/Edge Chromium) */
.simulador input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0056ff;
  cursor: pointer;
  margin-top: -6px; /* centraliza na trilha de 6px */
  position: relative;
  z-index: 2;
}
/* FIREFOX */
.simulador input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 5px;
  background: #ddd;
}
.simulador input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 5px;
  background: #0056ff; /* fill azul à esquerda */
}
.simulador input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0056ff;
  cursor: pointer;
}
.simulador .range-labels {
  display: flex;
  justify-content: space-between;
  color: #555;
}
.bg-gradient .column-bg-overlay {
  background: linear-gradient(180deg, #0d0d1a 0%, #002080 40%, #0040ff 100%);
  border-radius: 24px; /* se quiser igual ao mock */
}
.bg-gradient .row-bg.viewport-desktop {
  background: linear-gradient(180deg, #0d0d1a 0%, #002080 40%, #0040ff 100%);
}
.numerosSimulador {
  font-size: 24px;
}
.condicoesSpan {
  display: flex;
  align-items: center;
}
.condicoesSpan img {
  margin-bottom: 0px !important;
}
.dropdown-container {
  padding-top: 3rem !important;
}
.dropdown-container select {
  margin-top: 1rem !important;
}
.bg-gradient a {
  color: #fff !important;
}
body[data-form-submit="regular"] .container-wrap button[type="submit"],
body[data-form-submit="regular"] .container-wrap input[type="submit"] {
  padding: 15px 55px !important;
}
#fluentform_4 .ff-btn-submit,
#fluentform_5 .ff-btn-submit {
  display: none !important;
}
.fluentform .ff_upload_btn.ff-btn,
.fluentform .ff_upload_btn.ff-btn:hover {
  background-color: transparent !important;
  background: url(imgs/icon-forms-plus.svg) center left no-repeat !important;
  border-color: transparent !important;
  color: var(--blue-main-universo) !important;
  padding: 12px 20px 8px 32px !important;
}
.fluentform .ff_upload_btn.ff-btn:hover {
  color: var(--blue-deep-universo) !important;
}
/* END FLUENT FORMS */

/* Flickity Credito Automovel */
.credito-automovel .cell .row-bg,
.credito-pessoal .cell .row-bg,
.credito-consolidado .cell .row-bg {
  background: #fff;
  border-radius: 25px;
}
.h-100 {
  height: 100%;
}
/* FIM Flickity Credito Automovel */
/* Página Adesão */
.qr_code_dimensions {
  max-width: 100px;
  max-height: 100px;
}
#dia-dia-content h5,
#financas-content h5,
#seguranca-content h5 {
  min-height: 96px;
}
#financas-content,
#seguranca-content {
  display: none;
}
.flex-wrapper .wpb_wrapper {
  display: flex !important;
  justify-content: space-between !important;
  flex-direction: column !important;
}
/* FIM Página Adesão */

/* *** Página Ajuda *** */
#ajudaFlickity .cell .vc_row-o-equal-height {
  min-height: 450px;
}
#faqSearch form.search-form {
  display: flex;
  align-items: center;
}
#faqSearch .search-field {
  flex: 1;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: white url(imgs/icon-search.svg) center left 15px no-repeat !important;
  color: var(--blue-deep-universo);
  padding-left: 40px;
  font-weight: bold;
  font-size: 13px;
}
#faqSearch .search-field::placeholder {
  color: var(--blue-deep-universo);
}
.search-widget-btn .icon-salient-search {
  display: none !important;
}
#faqSearch .search-widget-btn {
  margin-left: 8px;
  background: var(--blue-main-universo) url(imgs/icon-arrow-btn-white.svg)
    center right 10px no-repeat !important;
  padding: 15px 50px 13px 20px !important;
  font-size: 16px !important;
  font-weight: normal !important;
}
#faqs-todas-content, /*#faqs-cc-content,*/ #faqs-c-content, #faqs-seguros-content, #faqs-pi-content {
  display: none;
}
/* *** FIM Página Ajuda *** */

/* *** Página Credito Pessoal *** */
.tabsCp .tab-item a {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  margin: 10px 5px;
  background: transparent;
  border: 1px solid var(--blue-main-universo) !important;
  color: var(--blue-main-universo);
}
.tabsCp .tab-item.active-tab a {
  border: 1px solid var(--blue-deep-universo) !important;
}
.tabsCp .tabCpValores p {
  font-size: 20px;
}
.tabsCp .tabCpValores p span {
  float: right;
  font-size: 24px;
  font-weight: bold;
}
.h480 {
  height: 480px;
}
.h500 {
  height: 500px;
}
#testemunhos .iwithtext .iwt-text {
  padding: 12px 0 0 60px;
}
#testemunhos .iwithtext .iwt-icon img {
  width: 45px;
}
.credito-pessoal .column-image-bg,
.credito-automovel .column-image-bg,
.credito-consolidado .column-image-bg {
  background-repeat: no-repeat;
}
/* *** FIM Página Credito Pessoal *** */

/* *** Página Credito Habitação *** */
.fBox { font-size: 13px !important; }
.fBox .flip-box-front h3 { position: relative; }
.fBox .flip-box-front h3::after {
  content: "";
  position: absolute;
  top: -25px;
  right: 0;
  width: 35px;
  height: 35px;
  background: url("imgs/icon-plus.svg") no-repeat center / contain !important;
}
.fBox .flip-box-back, .fBox .flip-box-front {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.fBox .flip-box-front .inner { padding: 60px 20px !important; } 
.fBox .flip-box-back .inner { padding: 30px !important; } 
.fBox ul li, .fBox ol li { 
  line-height: normal !important;
  padding-bottom: 5px !important;
}
.fBox .flip-box-back h3 { font-size: 28px !important; }
.fBox .flip-box-back h4 { font-size: 18px !important; }
/* *** FIM Página Credito Habitação *** */

/* *** Página Search *** */
body.search .search-form {
  display: flex;
  align-items: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: white url(imgs/icon-search.svg) center left 15px no-repeat !important;
  color: var(--blue-deep-universo) !important;
  padding-left: 40px;
  font-weight: bold !important;
  font-size: 13px !important;
}
body.search .search-field::placeholder {
  color: var(--blue-deep-universo) !important;
}
body.search .search-form input[type="text"] {
  background-color: rgba(0, 0, 0, 0);
}
body.search #page-header-bg {
  background-image: url(https://universo.yourcode-staging.com/wp-content/uploads/2025/09/ajuda-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
}
body.search #page-header-bg h1 {
  font-size: 60px;
  line-height: 64px;
}
body.search .searchForm {
  padding: 0 6%;
  width: 50%;
  text-align: center;
  margin: auto;
}
body.search .searchForm button,
body.search #search-results article:before,
body.search #search-results article .inner-wrap a:has(img) {
  display: none !important;
}
body.search-results .container-wrap .main-content {
  padding-top: 40px;
}
body.search #search-results article {
  margin-bottom: 20px !important;
  padding: 30px !important;
  background-color: white;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
body.search #search-results .result .inner-wrap h2 span {
  opacity: 1 !important;
  background-color: var(--blue-light-universo);
  color: var(--blue-deep-universo);
  font-size: 13px !important;
  text-transform: uppercase;
  padding: 12px 15px 8px 15px;
  margin: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
body.search #search-results .result .title a {
  color: var(--blue-deep-universo) !important;
  background-image: none;
}
body.search #search-results .result .title a:hover {
  color: var(--blue-main-universo) !important;
}
body.search #search-results .result .inner-wrap h2 {
  padding: 5% 0 0.5% 0 !important;
}
body.search .before-footer {
  padding-top: 4% !important;
}
/* *** FIM Página Search *** */

/* *** Página Dicas - Blog *** */
#dicas .nectar-post-grid-item .content {
  padding: 25px 0;
}
#dicas .meta-category a {
  background-color: var(--blue-light-universo);
  color: var(--blue-deep-universo) !important;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 15px 7px 15px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#dicas .nectar-post-grid .nectar-post-grid-item .content * {
  color: var(--blue-deep-universo);
}
#dicas a.load-more {
  background: var(--blue-main-universo);
  color: white;
  padding: 15px 50px 13px 20px !important;
  font-size: 16px !important;
  font-weight: normal !important;
  position: relative;
}
#dicas a.load-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  height: 30px;
  background: url(imgs/icon-arrow-btn-white.svg) no-repeat center / contain;
  transform: translateY(-50%) rotate(135deg);
}
#dicas a.load-more:hover {
  opacity: 0.85;
}
/* *** FIM Página Dicas - Blog *** */

/* *** Página Dicas - Single  *** */
body.single .featured-media-under-header {
  display: flex;
  flex-direction: column;
}
body.single .main-content .featured-media-under-header {
  padding: 4% 6%;
}
body.single .featured-media-under-header__content {
  order: 2;
  margin: 0 5%;
  border-bottom: 1px solid #354efd3b;
  padding-bottom: 50px;
}
body.single .featured-media-under-header__featured-media {
  order: 1;
  margin: 0 0 4% 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
body.single
  .featured-media-under-header__cat-wrap
  .meta-category
  a:not(:hover) {
  background-color: var(--blue-light-universo);
  padding: 10px 15px 7px 15px;
  text-transform: uppercase;
  font-size: 13px;
}
body.single .meta-date {
  color: #aeaeae;
}
body.single .related-post-wrap {
  margin-top: 0;
}
body.single .related-post-wrap .row-bg-wrap .row-bg {
  background: transparent;
}
body.single h3.related-title {
  padding-top: 0 !important;
  margin: 2% 5%;
}
body.single .vc_row-fluid > .blog-recent {
  margin: auto 5% !important;
  padding: 0 0 4% 0 !important;
}
body.single .related-posts .inner-wrap {
  box-shadow: none;
  border-radius: 0;
}
body.single .post-featured-img {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
body.single .post .content-inner {
  padding-bottom: 2%;
}
body.single .related-posts .meta-category {
  padding: 0;
}
body.single .related-posts .meta-category a {
  background-color: var(--blue-light-universo);
  color: var(--blue-deep-universo);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  padding: 10px 15px 7px 15px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  margin: 4% auto;
}
body.single .related-posts .meta-category a:hover,
body.single .featured-media-under-header__cat-wrap .meta-category a:hover {
  background-color: var(--blue-deep-universo);
  color: white;
  text-transform: uppercase;
  padding: 10px 15px 7px 15px;
  font-size: 13px;
}
body.single .related-posts .meta-category a:hover:before {
  transform: scaleX(0);
}
body.single .related-posts .article-content-wrap {
  padding: 0 0 4% 0 !important;
}
body.single .related-posts .grav-wrap {
  bottom: 0;
  left: 0;
  color: #aeaeae;
}
/* *** FIM Página Dicas - Single  *** */

/* *** Páginas Campanhas *** */
.degWb {
  background: linear-gradient(to bottom right, #e0f7fa, #00bcd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  font-weight: 100 !important;
}
/* *** FIM Páginas Campanhas *** */

/* *** Prestadores *** */
#rna-filtros-prestadores {
  padding: 0px 10%;
  margin-bottom: 60px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
button.rna-filtro-btn {
  background: transparent !important;
  border: 1px solid var(--blue-main-universo);
  padding: 15px;
  color: var(--blue-main-universo);
  cursor: pointer;
}
button.rna-filtro-btn:hover {
  background: var(--blue-deep-universo) !important;
  border: 1px solid white;
  color: white;
}
.prestadores-button {
  color: #030336 !important;
  border: 1px solid #030336 !important;
}
button.rna-filtro-btn.active {
  border: 1px solid #030336;
  padding: 15px;
  background: #030336 !important;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
#rna-filtros {
  width: 45%;
  margin: 0 20px 20px auto;
  display: flex;
  gap: 15px;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#rna-filtros p {
  font-size: 13px;
  padding-top: 20px;
}
#rna-filtros select {
   background-color: white;
   color: var(--blue-deep-universo);
   font-size: 13px;
}
.padding-prestadores { padding: 5% !important; }
.nome-prestadores { height: 60px; }
.nome-prestadores h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: var(--blue-main-universo);
}
.morada-prestadores { height: 70px; } 
.morada-prestadores > div > div:nth-child(1), .telefone-prestadores > div > div:nth-child(1) { width: 60px; }
.telefone-prestadores { height: 20px; } 
.telefone-prestadores .vc_col-sm-9 { padding-top: 5px; }
.botao-prestadores { margin-top: 4em; }
.prestadores-button { background: url(imgs/icon-arrow-btn-dark-blue.svg) center right 10px no-repeat; }
#prestador-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#prestador-modal .d-flex {
  display: flex;
  gap: 50px;
  margin: 15px 0 25px 0;
}
#prestador-modal .d-flex p {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 750px;
  width: 90%;
  z-index: 10;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.modal-content h4 {
  color: var(--blue-main-universo);
  font-size: 24px;
}
.modal-content img { width: 35px; }
.especialidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rna-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--blue-deep-universo);
  font-size: 13px;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.rna-page-link.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue-main-universo);
  border: 1px solid var(--blue-main-universo);
  color: white;
  font-size: 13px;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.rna-page-link.prev, .rna-page-link.next { 
  color: var(--blue-deep-universo);
  border: 1px solid var(--blue-deep-universo);
  margin: 0 10px;
}
.rna-page-link.disabled { opacity: .3; }
/* *** FIM Prestadores *** */

/* *** MOBILE *** */
@media only screen and (min-width: 999px) {
  .slide-out-widget-area-toggle {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  #floatingMenu {
    display: none !important;
  }
}
/* *** END MOBILE *** */
