/* ==========================================================================
   FONT
   ========================================================================== */
@font-face {
    font-family: Acto;
    src: url("/application/themes/bctt-theme/fonts/acto-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Acto;
    src: url("/application/themes/bctt-theme/fonts/acto-book3.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Acto;
    src: url("/application/themes/bctt-theme/fonts/acto-medium.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Acto;
    src: url("/application/themes/bctt-theme/fonts/acto-bold.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}


/* ==========================================================================
   CSS VARS
   ========================================================================== */
:root{
  --ctt-teal:#55bcb3;
  --brandbar-bg:#ffffff;
  --ink:#28262c;
  --border:#e5e7eb;
  --gutter:24px;
  --topbar-h:44px;
  --brandbar-h:72px;
  --brandbar-h-mobile:64px;
  --header-h-mobile: calc(var(--topbar-h) + var(--brandbar-h-mobile));

  --green: #55bcb3;
  --light-green: #d4f1f0;
  --light-green-brown: #f1f6dd;
  --dark-green-brown: #bad15d;
  --white: #ffffff;
  --black: #28262c;
  --light-silver: #fbfbfd;
  --silver: #ededed;
  --dark-silver: #28262c;
  --grey: #5c5c5c;
  --red: #df0024;
  --purple: #77287e;
}


/* ==========================================================================
   BASE / RESET
   ========================================================================== */
*{ box-sizing:border-box; font-family:Acto, Helvetica, sans-serif !important; font-size:20px; }
html,body{ margin:0; padding:0; }
body{
  font-family:Acto, Helvetica, sans-serif;
  color:var(--ink);
  background:#fff;
}
body.menu-open{ overflow:hidden; }

a{ color:var(--ink); text-decoration:none; }
img{ max-width:100%; }

dl,ol,ul{ margin-top:0; margin-bottom:0; color:var(--ink); }


/* ==========================================================================
   COMMON HOVERS
   ========================================================================== */
.breadcrumbs a:hover,
.two-rows-three-cols-quick-links *:hover,
#download-app a:hover,
ul.menu a:hover,
footer a:hover,
.topbar a:hover{
  color: var(--red) !important;
}


/* ==========================================================================
   HELPERS — COLORS
   ========================================================================== */
.bg-green{ background-color: var(--green) !important; }
.bg-light-green{ background-color: var(--light-green) !important; }
.bg-light-green-brown{ background-color: var(--light-green-brown) !important; }
.bg-dark-green-brown{ background-color: var(--dark-green-brown) !important; }
.bg-white{ background-color: var(--white) !important; }
.bg-black{ background-color: var(--black) !important; }
.bg-silver{ background-color: var(--silver) !important; }
.bg-grey{ background-color: var(--silver) !important; }
.bg-light-silver{ background-color: var(--light-silver) !important; }
.bg-red{ background-color: var(--red) !important; }
.bg-purple{ background-color: var(--purple) !important; }

.green{ color: var(--green) !important; }
.light-green{ color: var(--light-green) !important; }
.white{ color: var(--white) !important; }
.black{ color: var(--black) !important; }
.silver{ color: var(--silver) !important; }
.red{ color: var(--red) !important; }
.purple{ color: var(--purple) !important; }

/*
    CETELEM MODAL
*/

/*BCTT Modal Styling*/

.modalView {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.modalView .header {
    margin: 32px 32px 24px;
    height: 40px;
}

.modalView .header .bancocttlogo {
    float: left;
}

.modalView .header .cetelemlogo {
    float: right;
}

.modalView .body {
    margin: 32px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.modalView .footer {
    text-align: center;
    margin: 32px;
    display: flex;
}

.modalView-content {
    margin: auto;
    border: 1px solid white;
    border-radius: 3px;
    max-height: 368px;
    max-width: 472px;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    display: inline-table;
}

.modalView-content button {
    margin: 0;
    font-weight: 600 !important;
    top: 0 !important;
    padding: 0;
    text-transform: none;
}

.modalView-content .modalViewPreviousBttn {
    width: 100%;
    height: 40px;
    max-width: 200px;
    background-color: #DADADA;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-right: 8px;
    float: left;
}

.modalView-content .modalViewNextBttn {
    width: 100%;
    height: 40px;
    max-width: 200px;
    background-color: #EB3436;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
}

@media only screen and (max-width: 480px) {
    .modalView-content {
        max-height: 380px;
        max-width: 300px;
    }
    .modalView .header {
        margin: 16px 16px 12px;
        height: 20px;
    }
    .modalView .body {
        margin: 16px 16px 12px;
    }
    .modalView .footer {
        display: grid;
        justify-items: center;
        margin: 16px 16px 12px;
    }
    .modalView-content .modalViewPreviousBttn {
        margin-right: 0;
        margin-bottom: 8px;
    }
    .modalView .header .bancocttlogo {
        float: left;
        height: 20px;
        width: 80px;
    }
    .modalView .header .cetelemlogo {
        float: right;
        height: 22px;
        width: 80px;
    }
}

/*
    END CETELEM MODAL
*/

/* ==========================================================================
   HELPERS — LAYOUT / SPACING
   ========================================================================== */
.float-right{ float:right; }
.float-left{ float:left; }

.ml-auto{ margin-left:auto !important; }
.mr-auto{ margin-right:auto !important; }

.p-absolute{ position:absolute; }
.p-relative{ position:relative; }
.r-0{ right:0; }

.container{
  max-width: 85% !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
.container-fluid{
  width:95%;
  margin:auto !important;
}

.container#fixed-menu,
.container-fluid#fixed-menu{
  max-width:100% !important;
}

.container-sustentatibilidade{
  display:flex;
  max-width:92.5% !important;
  margin-left:auto !important;
}

#map { height: 500px; width: 100%; margin-bottom: 30px; }
.location-card { border: 1px solid #ddd; padding: 15px; margin-bottom: 15px; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
.location-card:hover { background: #f8f9fa; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.location-name { font-weight: bold; color: var(--black); margin-bottom: 8px; }
.location-address { color: var(--grey); font-size: 0.9em; }
.location-phone { color: var(--red); margin-top: 8px; }
.search-container { margin: 30px 0; }
#search-input { padding: 12px; font-size: 17px; }
.pac-container { z-index: 10000; }



.v--modal-overlay .v--modal-box {
    position: relative;
    overflow: auto;
    box-sizing: border-box;
    padding: 2rem;
}
div#jobs-app-plugin article {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    flex-direction:column;
    width:100%;
    margin-bottom:2rem;
    padding-top:1rem;
    padding-right:8rem;
    padding-bottom:1rem;
    padding-left:1rem;
    cursor:pointer;
    background-color:#eaeaea;
    -webkit-box-shadow:0 0 0 0 rgba(0,0,0,.3);
    box-shadow:0 0 0 0 rgba(0,0,0,.3);
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center
}
div#jobs-app-plugin article:after {
    font-size:.8125rem !important;
    font-weight:900;
    position:absolute;
    right:2rem;
    display:inline-block;
    padding:.5rem 1.25rem !important;
    content:'SAIBA MAIS';
    cursor:pointer;
    color:#fff;
    background-color:#eb3436
}
div#jobs-app-plugin article.empty:after,
div#jobs-app-plugin article.empty:before {
    content:none
}
div#jobs-app-plugin article:hover:after {
    background-color:#cf2027
}
div#jobs-app-plugin article h1 {
    font-size:1.125rem;
}
div#jobs-app-plugin article h2,
div#jobs-app-plugin article h3 {
    font-size:1rem;
}

div#jobs-app-plugin .v--modal-box .rec-app-job-detail form fieldset p {
    font-size: 1rem;
    margin: 1rem;
    color: #bf1919;
}

div#jobs-app-plugin .v--modal-box.v--modal input[type=checkbox]:checked {
    accent-color: #DF0024;
}

div#jobs-app-plugin .v--modal-box.v--modal {
	left: auto !important;
	right: auto !important;
	margin: auto !important;
	min-height: 375px !important;
	width: 50% !important;
}

@media only screen and (max-width: 800px) {
  div#jobs-app-plugin .v--modal-box.v--modal {
    width: 80% !important;
  }
}

@media only screen and (max-width: 600px) {
  div#jobs-app-plugin .v--modal-box.v--modal {
    width: 100% !important;
  }
}

.rec-app-job-list h2[text="LOCALIDADE"] {
	margin-top: 0.4rem;
    margin-bottom: 0.6rem;
}

input[type=file]::file-selector-button {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  font-size: .8125rem !important;
  line-height: 1.0625rem;
  text-transform: uppercase;
  font-weight: 900!important;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  margin: 0 0.5rem 1.25rem 0;
  position: relative;
  display: inline-block;
  background-color: #eb3436;
  color: #fff;
  -webkit-appearance: none;
  border: none;
  font-family: Acto,Helvetica,sans-serif;
}

@media only screen and (min-width: 48.063em) {
    input[type=file]::file-selector-button:hover {
        top: 1px;
    }
}

input[type=file]::file-selector-button:focus, input[type=file]::file-selector-button:hover {
    background-color: #e91d1f;
    color: #fff;
}

#extra-file-1, #cv {
    height: 2rem;
}

#extra-file-1 + p, #cv + p {
   margin-top: 0!important;
}

/*.rec-app-job-detail > h1 > span {
  font-size: 0;
  display: block;
}
.rec-app-job-detail > h1 > span:after {
  content: 'LOCALIDADE';
  font-size: 1.8rem;
}
*/

/*.rec-app-job-detail > h1 > span {
  display: block;
}
*/
.selected-tag button.close {
    margin: 0.1rem 0 0.1rem 0.1rem !important;
    padding: 0.5rem 1rem 0.5rem 1rem !important;
    background-color: #e03837 !important;
    text-shadow: none !important;
    opacity: unset !important;
}

.selected-tag button.close span {
    color: #fff;
}

#form fieldset > *:nth-last-child(3),
#form fieldset > *:nth-last-child(2),
#form fieldset > *:nth-last-child(1) {
 margin-top: 1rem;
}

.rec-app-privacy-policy-option {
    margin: 0 !important;
}

ul.dropdown-menu li.highlight a, ul.dropdown-menu li.active a, ul.dropdown-menu li a:hover {
    background-color: #E03837 !important;
    color: #fff !important;
}

select#geographical-area option:checked,
select#geographical-area option:hover {
    background-color: #E03837 !important;
    color: #fff !important;
}

.rec-app-job-detail {
    overflow: scroll;
}

#form, #form fieldset {
    overflow: visible;
}

ul.dropdown-menu {
    max-height: 300px !important;
}

.rec-app-job-list > article h1+h2 {
    margin-top: 0;
}

.rec-app-job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rec-app-job-list article {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    border: 1px solid var(--black);
    border-radius: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.rec-app-job-list h1 {
    font-size: 20px;
    margin: 0px;
}
.rec-app-job-list h2 {
    font-size: 17px;
    margin: 0px;
}
.rec-app-job-list p {
    margin: 0px;
}

.teimoso {
    position: fixed;
    top: 355px;
    right: 0px;
    z-index: 10;
}

.teimoso_hp {
    position: fixed;
    top: 291px;
    right: 0px;
    z-index: 10;
    width: 400px; 
    height: 230px; 
    padding-bottom: 30px; 
    padding-top: 30px; 
    padding-left: 30px; 
    background-color: white; 
    border-top-left-radius: 40px; 
    border-bottom-left-radius: 40px;
}

.teimoso_hp_cta {
    font-size: 17px; 
    border: 1px solid black;
    border-radius: 20px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.teimoso_hp_cta:hover {
    border: 1px solid var(--red);
    background-color: var(--red);
    color: white;
}

.spacer-10{ height:10px; }
.spacer-20{ height:20px; }
.spacer-30{ height:30px; }
.spacer-40{ height:40px; }
.spacer-50{ height:50px; }
.spacer-75{ height:75px; }
.spacer-100{ height:100px; }
.spacer-150{ height:150px; }

.p-6{ padding:6rem; }
.p-7{ padding:7rem; }
.p-8{ padding:8rem; }
.p-9{ padding:9rem; }
.p-10{ padding:10rem; }

.pt-6{ padding-top:6rem; }
.pt-7{ padding-top:7rem; }
.pt-8{ padding-top:8rem; }
.pt-9{ padding-top:9rem; }
.pt-10{ padding-top:10rem; }

.pb-6{ padding-bottom:6rem; }
.pb-7{ padding-bottom:7rem; }
.pb-8{ padding-bottom:8rem; }
.pb-9{ padding-bottom:9rem; }
.pb-10{ padding-bottom:10rem; }

.pl-3{ padding-left:3% !important; }
.pr-3{ padding-right:3% !important; }
.pl-5{ padding-left:5% !important; }
.pr-5{ padding-right:5% !important; }

.ml-5{ margin-left:5% !important; }
.mr-5{ margin-right:5% !important; }
.mr-3{ margin-right:3% !important; }

.text-right{ text-align:right; }
.align-items-bottom{ align-items:end !important; }

.w-10{ width:10%; }
.w-20{ width:20%; }
.w-30{ width:30%; }
.w-40{ width:40%; }
.w-50{ width:50%; }
.w-60{ width:60%; }
.w-80{ width:60%; } /* estava assim no original */
.w-100{ width:100%; }

.w-50px{ width:50px; }
.w-60px{ width:60px; }
.w-70px{ width:70px; }

.h-10{ height:10%; }
.h-20{ height:20%; }
.h-30{ height:30%; }
.h-40{ height:40%; }
.h-50{ height:50%; }
.h-60{ height:60%; }
.h-70{ height:70%; }
.h-80{ height:80%; }
.h-90{ height:90%; }

.m-h-vh-10{ height:10vh; }
.m-h-vh-20{ height:20vh; }
.m-h-vh-30{ height:30vh; }
.m-h-vh-40{ height:40vh; }
.m-h-vh-50{ height:50vh; }
.m-h-vh-60{ height:60vh; }
.m-h-vh-70{ height:70vh; }
.m-h-vh-80{ height:80vh; }
.m-h-vh-90{ height:90vh; }
.m-h-m-w-vh-40{ height:40vh; width:40vh; }

hr{
  background-color: var(--black);
  color: var(--ink);
  opacity: 1;
}

.cta-with-hover-icon .hover-icon{
    display:none;
}

.cta-with-hover-icon:hover .default-icon{
    display:none;
}

.cta-with-hover-icon:hover .hover-icon{
    display:inline-block;
}

.table-cell{ display:table-cell; }
.table-holder{ overflow:auto; }
th{ vertical-align:top; }

.border-none{ border:none !important; }


/* ==========================================================================
   NOTICE
   ========================================================================== */
.blue-notice,
.red-notice{
  border-radius:30px;
  position:relative;
  width:100%;
  margin:auto;
}

.blue-notice .arrow-cta,
.red-notice .arrow-cta{ margin-left:15px; }

.red-notice{
  color: var(--fff);
}

.close-notice{
  position:absolute;
  top:20px;
  right:20px;
  cursor:pointer;
}

.hidden{ display:none; }


/* ==========================================================================
   HEADER / MENU BASE
   ========================================================================== */
.dropdown-toggle::after{ content:none !important; }
.nav-link{ padding:0; }

.header .cta-header,
.logo{
  z-index:4;
  position:relative;
}

header .menu{
  list-style-type:none;
  margin:0;
  padding:0;
  width:100%;
}

header .menu li a{
  display:block;
  text-align:center;
  text-decoration:none;
}

header .menu li a:hover{ color: var(--red); }

header .menu .cta{
  margin:5px;
  padding:5px 15px;
}

#topbar a{
  font-size:17px;
  font-style:normal;
  font-weight:400;
  line-height:normal;
  text-shadow:0px 4px 4px rgba(0,0,0,0.25);
}

#topbar{
  height:48px;
  color: var(--white);
}

.results-navigation li a{ color: var(--ink); }
.results-navigation li a:hover,
.results-navigation li.active a{ color: var(--red); }

.tabs a{ color: var(--dark-silver); }
.faqs-page .container-sub-categorias a{ color: var(--ink); }


/* ==========================================================================
   MENU (submenu)
   ========================================================================== */
.menu-ca .submenu{
  width:60vw;
  z-index:3;
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
  padding-top:8vh;
  position:absolute;
  background:#fff;
  padding-bottom:4vh;
  left:auto;
  right:auto;
}

.menu-ca .submenu .activeItem{ color: var(--red) !important; }

.menu-ca .submenu-item img{
  margin-left:15px;
  margin-bottom:5px;
}

.menu-ca .sub-menu-ul{
  list-style:none;
  padding:0;
}

.menu-ca ul.sub-menu-ul li{
  float:none !important;
  display:flex;
}

.menu-ca .sub-menu-ul li a{
  padding-bottom:10px;
  color:#000;
}

.menu-ca .submenu-content a{
  color:#000 !important;
  text-align:left !important;
  padding-bottom:1rem;
  display:inline-block;
  width:100%;
}

.conteudo_variavel ol {
  list-style: none;
  counter-reset: item;
}

.conteudo_variavel ol li {
  counter-increment: item;
  position: relative;
  padding-left: 30px;
}

.conteudo_variavel ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;

    font-weight: bold;
    color: var(--red);
}

.conteudo_variavel ul li {
  list-style: none;
  padding-left: 0;
}

.conteudo_variavel ul li {
  position: relative;
  padding-left: 30px;
}

.conteudo_variavel ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;

    height: 17px;        
    width: 17px;
    
    background-image: url("/application/themes/bctt-theme/img/icons/check_dark.svg");
    background-size: contain;   
    background-repeat: no-repeat;
}

.conteudo_variavel a {
    font-weight: bold;
    color: var(--red);
    text-decoration: underline;
}

.menu-ca .submenu-content a:hover{ color: var(--red) !important; }

.menu-helper ul li a{
  display:block;
  text-align:center;
  text-decoration:none;
  padding:25px 0;
}

.menu-helper-product.bg-light-silver a{ padding:10px; }

/* FIX: bloco estava partido no teu CSS */
.menu-ca .sub-menu-img-wrapper{
  height:20vh;
  width:20vh;
}


/* ==========================================================================
   OPEN/CLOSE classes (menu antigo)
   ========================================================================== */
.close{ display:block; }
.open{ display:none; }


/* ==========================================================================
   TOPBAR + SEARCH (o teu caso)
   - Corrige z-index para não ficar por baixo.
   - Corrige botão minúsculo em mobile.
   - Mantém o teu comportamento de abrir com .topbar.search-open
   ========================================================================== */
.topbar{
  background:var(--ctt-teal);
  color:#fff;
  position: sticky;
  top: 0; /* distance from the top of viewport */
  z-index: 9999; /* garante que fica por cima do hero/header */
}

/* wrapper da search */
.topbar-search{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  min-width: 120px; /* evita “esmagar” em mobile */
  position:relative;
  z-index: 10000;
}

/* input colapsado */
.topbar-search__input{
  width:0;
  opacity:0;
  visibility:hidden;
    border: 0;
    color: var(--ink) !important;
    outline: 0;
    background: white;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    transition: width .2s ease, opacity .2s ease, visibility .2s ease;
    border-radius: 8px;
    font-size: 18px;
    padding: 2px;
    padding-left: 19px;
    padding-right: 12px;
}

/* quando abre */
.topbar.search-open .topbar-search__input{
  width:240px;
  opacity:1;
  visibility:visible;
}

/* close toggle */
#topSearchClose{ display:none; }
.topbar.search-open #topSearchBtn{ display:none; }
.topbar.search-open #topSearchClose{ display:inline-flex; }

/* botões com área clicável e tamanho consistente */
#topSearchBtn,
#topSearchClose{
  min-width:44px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border:0;
  background:transparent;
  cursor:pointer;
}

#topSearchBtn img{
  width:20px;
  height:20px;
  display:block;
}

/* se precisares de “forçar” a topbar acima de tudo quando open */
.topbar.search-open{
  z-index: 99999;
}


/* ==========================================================================
   NAV/BRANDBAR (se estás a usar o “novo” sistema)
   ========================================================================== */
.brandbar{
  background:var(--brandbar-bg);
  border-bottom:1px solid var(--border);
  position:relative;
  z-index:1100;
}

.brandbar__inner{
  min-height:var(--brandbar-h);
  display:flex;
  align-items:center;
  gap:24px;
}

.brandbar__logo img{
  display:block;
  width:170px;
  height:auto;
}

.navbar-toggler{
  float:right;
  height:100%;
  border:none;
  text-align:right;
}

.navbar-toggler:focus-visible,
.navbar-toggler:focus{
  box-shadow:none;
  border-color:rgba(0,0,0,0.125);
}

.navbar-toggler-icon{
  display:inline-block;
  width:2em;
  height:2em;
}

/* Hamburguer */
.menu-toggle{
  margin-left:auto;
  width:44px;
  height:40px;
  border:0;
  background:transparent;
  cursor:pointer;
  position:relative;
  z-index:110;
  display:none;
  transition:transform .2s ease;
}
.menu-toggle__bar{
  display:block;
  width:22px;
  height:2px;
  background:#111;
  margin:5px auto;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2){ opacity:0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav{
  flex:1;
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:16px;
}

.nav__list{
  flex:1;
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav__cta{
  margin-left:auto;
  display:flex;
  gap:12px;
  align-items:center;
}

.nav__link{
  display:inline-block;
  padding:8px 10px;
  color:var(--ink);
  text-decoration:none;
  border-radius:999px;
  font-size:17px;
  line-height:1.2;
}
.nav__link:hover{ background:#f3f4f6; }
.nav__link.is-active{ color:#e11d48; }

/* Botões */
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 22px;
  border-radius:26px;
  text-decoration:none;
  font-weight:600;
  font-size:17px;
  user-select:none;
  -webkit-user-select:none;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.btn--ghost,.btn--primary{
  border:1px solid var(--ink);
  color:var(--ink);
  background:transparent;
}
.btn--ghost:hover,.btn--primary:hover{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}


/* ==========================================================================
   GRID / CARDS (mantive o que tinhas)
   ========================================================================== */
.grid-two-rows-three-cols h4,
.grid-one-row-three-cols h4{
  position:absolute;
  bottom:5%;
  width: calc((100% - 6rem));
}

.one-row-two-cols-w-card h4,
.one-row-two-cols-w-card-reverse h4{
  position:relative;
  top:85%;
}

.dicas-grid h4{
  position:absolute;
  bottom:5%;
  width:85%;
}

.grid-two-rows-three-cols .grid-inner,
.grid-one-row-three-cols .grid-inner{
  border-radius:40px;
  position:relative;
  min-height:400px;
  margin-bottom:50px;
}

.dicas-grid .grid-inner{
  border-radius:40px;
  padding:5%;
  position:relative;
  min-height:100%;
  cursor:pointer;
}

.shadow-card {
  box-shadow: 4px 6px 6px 0px rgba(40, 38, 44, 0.19);
  border-radius: 40px;
  position: relative;
}

.shadow-card .float-right.icon-card{
  position:absolute;
  width:50%;
  right:20%;
}

.body-text-1,
.body-text-1 b{ font-size:30px; }

p.body-text-1{ font-size:24px !important; }

.grid-one-row-three-cols .chabitacao{
  background-image:url("/application/themes/bctt-theme/img/3d/chabitacao.png");
  background-size:cover;
}
.grid-one-row-three-cols .cpessoal{
  background-image:url("/application/themes/bctt-theme/img/3d/cpessoal.png");
  background-size:cover;
}
.grid-two-rows-three-cols .sustentabilidade{
  background-image:url("/application/themes/bctt-theme/img/3d/sustentabilidade.png");
  background-size:cover;
}
.grid-two-rows-three-cols .patinhas{
  background-image:url("/application/themes/bctt-theme/img/3d/patinhas.png");
  background-size:cover;
}

.grid-two-rows-three-cols .poupanca .icon-3d,
.grid-two-rows-three-cols .fixa .icon-3d,
.grid-two-rows-three-cols .credito .icon-3d{
  position:absolute;
  top:-8%;
  right:15%;
  max-width:20vw;
}
.grid-two-rows-three-cols .ccredito .icon-3d{ max-width:20vw; }


/* ==========================================================================
   CTAs / FIXED MENU
   ========================================================================== */
.cta-default{ border:1px solid var(--ink); }

.header li.flex-fill,
.fixed{ padding:0px 10px; }

.cta-default.black:hover{
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

a.cta.cta-fill-red:hover{
  background: var(--white) !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

a.cta.cta-fill-white:hover{
  background: var(--red) !important;
  color: var(--white) !important;
  border:none !important;
}

#fixed-menu-ctas{
  position:fixed;
  bottom:0;
  background-color:var(--black);
  width:100%;
  z-index:999;
  max-height:100px;
}
#fixed-menu-ctas ul{ padding:15px 0; }
#fixed-menu-ctas ul li{
  list-style-type:none;
  text-align:center;
}
#fixed-menu-ctas li a{
  width:70%;
  margin:auto;
  display:inline-block;
  padding:10px 50px;
}


/* ==========================================================================
   FOOTER (mantive)
   ========================================================================== */
.download-app-footer{ position:relative; bottom:0; }

footer a{
  text-decoration:none;
  color:#000;
}
.footer-menu{ list-style-type:none; }
.footer-menu li{ line-height:40px; }


/* ==========================================================================
   VISIBILITY HELPERS
   ========================================================================== */
.hideDesktop{ display:none; }
.hideMobile{ display:inline; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Desktop: largura mínima dos botões / input search */
@media (min-width:993px){
  .btn-login{ min-width:90px; }
  .btn-abrir-conta{ min-width:190px; }
}

/* Até 1199px (teu bloco grande) */
@media (max-width: 1199px){

  .alert-blue p,
  .alert-red p{ font-size:20px !important; }

  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d{
    max-width:14vw;
    top:0;
  }
  .grid-two-rows-three-cols .ccredito .icon-3d{ max-width:14vw; }

  .menu-ca .submenu a{ font-size:17px !important; }

  .hideDesktop{ display:inline; }
  .hideMobile{ display:none; }

  header .menu li a{ text-align:left; }
  header .menu .cta{ text-align:center; }

  header .open .menu{
    display:inline-block !important;
    padding-top:2vh;
    padding-bottom:2vh;
    padding-left:5vw;
    padding-right:5vw;
  }

  p, .cta{ font-size:20px !important; }
  p.body-text-1{ font-size:24px !important; }
  h2{ font-size:40px; }

  .menu-helper ul{ flex-wrap:wrap; }
  .menu-helper ul li{
    float:none;
    margin:auto;
    flex:33% !important;
    padding:10px;
  }

  footer .col-12{ margin-bottom:50px; }

  .main-slider.main-slider .carousel-caption{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .close{ display:none; }
  .open{
    display:block;
    position:absolute;
    transform:none;
    margin-top:10vh !important;
    background:#fff;
    width:100vw;
    left:0;
    height:auto;
    z-index:3;
    box-shadow:0px 6px 6px -5px rgba(40, 38, 44, 0.19);
    border-top:1px solid #000;
    padding:0;
  }

  .header .open li.flex-fill,
  .fixed{
    width:100%;
    padding:10px;
  }

  .header .open .cta-header{
    width:50% !important;
    float:left;
    margin-top:2vh;
    margin-bottom:2vh;
  }

  header, .header.container-fluid.menu-ca{
    max-width:100% !important;
    width:100%;
    padding-right:0px !important;
    padding-left:0px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  header .col-xl-2{ padding-left:5%; }
  header .col-xl-10{ padding-right:5%; }

  .menu-ca .submenu{
    position:absolute;
    top:0;
    z-index:999;
    transform:none;
    padding-top:25px;
    width:100%;
    border-top:1px solid #000 !important;
    border-radius:0;
  }

  .accordion-links img{ right:-25px; }

  #fixed-menu-ctas li a{
    width:90%;
    font-size:17px !important;
  }

  footer{ margin-bottom:75px; }
}

/* Mobile (<= 992px) */
@media (max-width:992px){

  .brandbar__inner{
    min-height:var(--brandbar-h-mobile);
    padding-top:25px;
    padding-bottom:25px;
  }
  .brandbar__logo img{ width:180px; height:auto; }
  .menu-toggle{ display:inline-block; margin-left:auto; }

  /* NAV overlay (se estiveres a usar o novo sistema) */
  .nav{
    position:fixed;
    left:0; right:0;
    top:calc(var(--topbar-h) + var(--brandbar-h-mobile) + 25px);
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    gap:24px;
    padding:20px 30px 24px;
    margin-left:0 !important;
    width:100%;
    transform:translateY(-16px);
    opacity:0;
    pointer-events:none;
    visibility:hidden;
    transition:transform .22s cubic-bezier(.22,.61,.36,1), opacity .22s ease, visibility 0s linear .22s;
    z-index:1900;
    will-change:transform, opacity;
  }
  .nav.is-open{
    transform:none;
    opacity:1;
    pointer-events:auto;
    visibility:visible;
    transition-delay:0s;
  }
  #primaryNav.nav{ display:block !important; }

  .nav__list{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    width:100%;
    padding:0;
  }
  .nav__link{
    padding:0;
    border:0;
    border-radius:0;
    font-size:20px;
    width:100%;
    text-align:left;
  }
  .nav__cta{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    width:100%;
    padding:0;
    margin-top:30px;
  }
  .btn{ width:100%; height:48px; border-radius:26px; font-size:18px; }

  /* SEARCH: no mobile ocupa mais largura e mantém ícone bom */
  .topbar.search-open .topbar-search{
    width:100%;
    justify-content:space-between;
  }
  .topbar.search-open .topbar-search__input{
    width: calc(100% - 70px); /* espaço para o X */
  }

  /* ícones 3D */
  .grid-two-rows-three-cols .grid-inner,
  .grid-one-row-three-cols .grid-inner{ min-height:300px; }

  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d{ top:8%; }

  .menu-helper img{ display:none; }
  .schedules img.float-right{ display:none; }
}

@media (max-width: 600px) {
  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d {
    max-width: 25vw;
    top: 0;
  }

  .grid-two-rows-three-cols .ccredito .icon-3d {
    max-width: 25vw;
  }

  .grid-two-rows-three-cols .ccredito .icon-3d {
    max-width: 25vw;
  }
  
  .header.container-fluid {
    width: 100%;
    margin: 0;
  }
  .ctt-footer-links {
    grid-template-columns: 1fr;
  }

  .ctt-social-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .ctt-footer-logo img {
    height: 28px;
  }
}

@media (max-width: 400px) {
  #fixed-menu-ctas li,
  #fixed-menu-ctas li a {
    width: 100% !important;
    margin-bottom: 10px;
  }

  #fixed-menu-ctas li a {
    float: none;
    width: 80% !important;
  }

  #fixed-menu-ctas ul {
    display: block !important;
  }

  #fixed-menu-ctas {
    max-height: 140px;
  }

  footer {
    margin-bottom: 140px;
  }
}

/* poupanca-e-investimento-conta-poupanca */
.top-banner {
    max-height: 300px;
    overflow: hidden;
}

.top-banner .centered {
    display: flex;
    justify-content: space-between;
}

.top-banner h1 {
    font-size: 42px;
    margin-top: 0px;
    font-weight: 600px;
}

.top-banner p {
    font-size: 17px;
}

.top-banner .button {
  background-color: #e50914; /* red button */
  padding: 12px 28px;
  border-radius: 25px;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
}

.top-banner .button:hover {
  opacity: 0.9;
}

.top-banner .image {
  width: 350px;
  opacity: 0.8;
}

.info-box {
  width: 360px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: Acto, Helvetica, sans-serif;
}

.info-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 600;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.arrow_before ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arrow_before ul li {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.arrow_before ul li::before {
  content: "↓";
  margin-right: 10px;
  font-size: 18px;
}

.info-box ul li::before {
  content: "↓";
  margin-right: 10px;
  font-size: 18px;
}


.savings_container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.savings_item {
    width: 160px;
}
.savings_icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.savings_icon img {
    width: 32px;
    height: 32px;
}
.savings_text-title {
    font-weight: bold;
    color: var(--ink);
    font-size: 17px;
}
.savings_text-sub {
    font-size: 17px;
    color: var(--ink);
    text-align: center;
}

.talk_to_us_banner {
    background-color: #D6001C; /* Strong red tone */
    color: white;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Acto, Helvetica, sans-serif;
}

.talk_to_us_banner_content {
    display: flex;
    flex: 1;
    gap: 20px;
}

.talk_to_us_banner-text {
    font-size: 24px;
    line-height: 1.4;
    max-width: 60%;
}

.talk_to_us_arrow {
    font-size: 28px;
    margin-left: 20px;
}

.talk_to_us_icon {
    width: 120px;
    margin-right: 50px;
    opacity: 0.5; /* faded look from screenshot */
}

.faq-section {
    background-color: #1E1D22; /* dark background */
    color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.faq-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
}

.faq-item {
    font-size: 18px;
}

.faq-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.faq-desc {
    margin-top: 10px;
    color: #d0d0d0;
    font-size: 17px;
}

.piggy-bg {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    opacity: 0.13;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkmark {
    font-size: 20px;
    color: var(--ink);
    margin-top: 4px;
}

.benefit-title {
    font-size: 20px;
    color: #009688; /* teal similar to screenshot */
    margin-bottom: 6px;
}

.benefit-desc {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.4;
    max-width: 360px;
}

.notes-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.notes-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
}

.top-banner-reforma-bg {
  background-image: url("/application/themes/bctt-theme/img/3d/chabitacao.png");
  background-size: cover;
}

.eco-card {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #bfbfbf;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

/* LEFT IMAGE */
.eco-image {
  width: 40%;
  height: 350px;
}

.eco-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.eco-content {
  width: 60%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eco-content h3 {
  margin: 0 0 16px 0;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}

.eco-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 520px;
}

/* LINK */
.eco-link {
  align-self: flex-end;
  margin-top: 20px;
  font-size: 17px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
}

.eco-link span {
  font-size: 18px;
}

@media (max-width: 900px) {
  .eco-card {
    flex-direction: column;
  }

  .eco-image,
  .eco-content {
    width: 100%;
  }

  .eco-content {
    padding: 30px;
  }

  .eco-link {
    align-self: flex-start;
  }
}

.stat-card {
  width: 260px;
  height: 260px;
  border: 1.5px solid #63c9c6;
  border-radius: 22px;
  padding: 36px 24px 24px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TITLE */
.stat-card h4 {
  margin: 0 0 14px 0;
  color: #55bdb9;
  font-size: 20px;
  font-weight: 500;
}

/* BODY TEXT */
.stat-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

/* ICON POSITION */
.card-icon {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.card-icon img {
  width: 28px;
  opacity: 0.8;
}

/* Poupança e Investimento - Poupança */

.savings-card {
  width: 320px;
  height: 360px;
  background: #dff1f1;
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.savings-card h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  height: 50px;
}

.subtitle {
  margin-top: 10px;
  font-size: 17px;
  color: var(--ink);
  height: 50px;
}

/* RATE */
.rate {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e00000;
}

.rates {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.percent {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.tanb {
  font-size: 17px;
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* FOOTER */
.card-footer {
  color: #e00000;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT TEXT BLOCK */
.main-highlight-text {
  max-width: 620px;
}

.main-highlight-text h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
}

.main-highlight-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 22px;
}

/* RIGHT CTA CARD */
.main-highlight-card {
  width: 420px;
  height: 380px;
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* ICON */
.main-highlight-icon {
  font-size: 120px;
  opacity: 0.35;
  align-self: flex-end;
}

/* CTA TEXT + ARROW */
.main-highlight-cta {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}





/* NEW HTML CSS */
/*GLOBALS*/
:root {
  --green: #55bcb3;
  --light-green: #d4f1f0;
  --light-green-brown: #f1f6dd;
  --dark-green-brown: #bad15d;
  --white: #ffffff;
  --black: #28262c;
  --light-silver: #fbfbfd;
  --silver: #ededed;
  --dark-silver: #28262c;
  --grey: #5c5c5c;
  --red: #df0024;
  --purple: #77287e;
}

html {
  overflow-x: hidden;
}

* {
  font-family: Acto, Helvetica, sans-serif !important;
  font-size: 20px;
}

.bg-green {
  background-color: var(--green) !important;
}
.bg-light-green {
  background-color: var(--light-green) !important;
}
.bg-light-green-brown {
  background-color: var(--light-green-brown) !important;
}
.bg-dark-green-brown {
  background-color: var(--dark-green-brown) !important;
}
.bg-white {
  background-color: var(--white) !important;
}
.bg-black {
  background-color: var(--black) !important;
}
.bg-silver {
  background-color: var(--silver) !important;
}
.bg-grey {
  background-color: var(--silver) !important;
}
.bg-light-silver {
  background-color: var(--light-silver) !important;
}
.bg-red {
  background-color: var(--red) !important;
}
.bg-purple {
  background-color: var(--purple) !important;
}

.green {
  color: var(--green) !important;
}
.light-green {
  color: var(--light-green) !important;
}
.white {
  color: var(--white) !important;
}
.black {
  color: var(--black) !important;
}
.grey {
  background-color: var(--silver) !important;
}
.silver {
  color: var(--silver) !important;
}
.red {
  color: var(--red) !important;
}
.purple {
  color: var(--purple) !important;
}

.float-right {
  float: right;
}
.float-left {
  float: left;
}

.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}

.p-absolute {
  position: absolute;
}
.p-relative {
  position: relative;
}

.r-0 {
  right: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 85% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container-fluid {
  width: 95%;
  margin: auto !important;
}

.container#fixed-menu,
.container-fluid#fixed-menu {
  max-width: 100% !important;
}

.spacer-10 {
  height: 10px;
}
.spacer-20 {
  height: 20px;
}
.spacer-30 {
  height: 30px;
}
.spacer-40 {
  height: 40px;
}
.spacer-50 {
  height: 50px;
}
.spacer-75 {
  height: 75px;
}
.spacer-100 {
  height: 100px;
}
.spacer-150 {
  height: 150px;
}

.p-6 {
  padding: 6rem;
}
.p-7 {
  padding: 7rem;
}
.p-8 {
  padding: 8rem;
}
.p-9 {
  padding: 9rem;
}
.p-10 {
  padding: 10rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pl-3 {
  padding-left: 3% !important;
}
.pr-3 {
  padding-right: 3% !important;
}

.pl-5 {
  padding-left: 5% !important;
}

.pr-5 {
  padding-right: 5% !important;
}

.ml-5 {
  margin-left: 5% !important;
}
.mr-5 {
  margin-right: 5% !important;
}
.mr-3 {
  margin-right: 3% !important;
}

.text-right {
  text-align: right;
}

img {
  max-width: 100%;
}

.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-80 {
  width: 60%;
}
.w-100 {
  width: 100%;
}

.w-50px {
  width: 50px;
}
.w-60px {
  width: 60px;
}
.w-70px {
  width: 70px;
}

.h-10 {
  height: 10%;
}
.h-20 {
  height: 20%;
}
.h-30 {
  height: 30%;
}
.h-40 {
  height: 40%;
}
.h-50 {
  height: 50%;
}
.h-60 {
  height: 60%;
}
.h-70 {
  height: 70%;
}
.h-80 {
  height: 80%;
}
.h-90 {
  height: 90%;
}

.m-h-vh-10 {
  height: 10vh;
}

.m-h-vh-20 {
  height: 20vh;
}

.m-h-vh-30 {
  height: 30vh;
}

.m-h-vh-40 {
  height: 40vh;
}

.m-h-vh-50 {
  height: 50vh;
}

.m-h-vh-60 {
  height: 60vh;
}

.m-h-vh-70 {
  height: 70vh;
}

.m-h-vh-80 {
  height: 80vh;
}

.m-h-vh-90 {
  height: 90vh;
}

.m-h-m-w-vh-40 {
  height: 40vh;
  width: 40vh;
}

.align-items-bottom {
  align-items: end !important;
}

hr {
  background-color: var(--black);
  color: var(--black);
  opacity: 1;
}

.table-cell {
  display: table-cell;
}

th {
  vertical-align: top;
}

.table-holder {
  overflow: auto;
}

.negative-right-5 {
  right: -5%;
  position: relative;
}
.negative-right-10 {
  right: -10%;
  position: relative;
}
.negative-right-15 {
  right: -15%;
  position: relative;
}
.negative-right-20 {
  right: -20%;
  position: relative;
}
.negative-right-25 {
  right: -25%;
  position: relative;
}

.negative-left-5 {
  left: -5%;
  position: relative;
}

.negative-left-10 {
  left: -10%;
  position: relative;
}

.negative-left-15 {
  left: -15%;
  position: relative;
}

.negative-left-20 {
  left: -20%;
  position: relative;
}

.negative-left-25 {
  left: -25%;
  position: relative;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.border-none {
  border: none !important;
}

.seguro .four-steps-green h3.black {
  text-align: center;
}
.seguro table thead th {
  border-bottom: 0;
}
.seguro table th .body-text-1 {
  font-weight: normal;
}
.seguro .table > :not(caption) > * > * {
  padding: 1rem;
}

.seguro .card-bordered-green {
  border-radius: 40px;
  background: var(--light-green);
  border: none !important;
}

.artigo-content p {
  line-height: 35px;
}

.steps .step,
.steps-image .step {
  border-bottom: 2px solid var(--black);
}

.border-radius {
  border-radius: 25px;
}

.breadcrumbs a:hover, .two-rows-three-cols-quick-links *:hover, #download-app a:hover {
  color: var(--red) !important;
}

.results-navigation-container {
  display: flex;
  justify-content: center;
}

.results-navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}

.results-navigation li {
  list-style-type: none;
}

.results-navigation li.active {
  list-style-type: none;
}

.results-navigation li a {
  color: var(--ink);
}
.results-navigation li a:hover,
.results-navigation li.active a {
  color: var(--red);
}
/*GLOBALS*/

/*FONTS*/
h2 {
  font-family: Acto, Helvetica, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h3 {
  font-family: Acto, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h4 {
  font-family: Acto, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h4.titles-2 {
  font-family: Acto, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.body-text-1,
.body-text-1 b {
  font-size: 30px;
}
.body-text-2 {
  font-size: 28px;
}
.body-text-3 {
  font-size: 25px;
}
.body-text-4 {
  font-size: 20px;
}
.body-text-5 {
  font-size: 17px;
}

.free-text.small h3 {
  font-size: 30px;
}
.free-text.small p {
  font-size: 20px;
}

.alert-blue a,
.red-blue a,
.silver-blue a,
.one-row-two-cols-w-negative-card-right .shadow-card a {
  color:var(--ink);
}

.four-steps-green a:hover p {
  color: var(--ink) !important;
}

.alert-blue a:hover,
.red-blue a:hover,
.silver-blue a:hover,
.one-row-two-cols-w-negative-card-right .shadow-card a:hover,
#faqs a:hover p,
.one-row-two-cols-w-card-reverse a:hover {
  color: var(--red) !important;
}

/*FONTS*/

/*HEADERS*/
#topbar {
  height: 48px;
  color: var(--white);
}

#topbar a {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
/*HEADERS*/

/*MENU*/
header#homepage {
  min-height: 16vh;
}

header .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.goback-menu {
  cursor: pointer;
}

header {
  padding: 15px;
}

.logo {
  height: 100%;
  display: flex;
}

.navbar-collapse {
  height: 100%;
}

.tabs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

header .menu li {
  float: left;
}

header .menu li a {
  display: block;
  text-align: center;
  text-decoration: none;
}

header .menu li a:hover {
  color: var(--red);
}

header .menu .cta {
  margin: 5px;
  padding: 5px 15px;
}

.menu-helper {
  padding: 0;
}

.menu-helper ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
}

.menu-helper ul li {
  float: left;
  margin: 5px;
}

.menu-helper ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 25px 0;
}

.menu-helper ul li a img {
  margin-right: 10px;
}

#fixed-menu-ctas {
  position: fixed;
  bottom: 0;
  background-color: var(--black);
  width: 100%;
  z-index: 999;
  max-height: 100px;
}

#fixed-menu-ctas ul {
  padding: 15px 0;
}

#fixed-menu-ctas li a{
  width: 70%;
  margin: auto;
  display: inline-block;
  padding: 10px 50px;
}

#fixed-menu-ctas ul li {
  list-style-type: none;
  text-align: center;
}
/*MENU*/

/*CTA*/
.cta {
  border-radius: 25px;
  text-align: center;
  padding: 15px 50px;
}

.menu-helper .cta {
  border-radius: 15px;
}

.cta-default {
  border: 1px solid var(--black);
}

.cta-fill-red {
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--white);
}

.cta-fill-white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--red);
}
/*CTA*/

/*SLIDERS*/
/* .main-slider {
    max-height: 85vh;
} */

.main-slider {
  margin-bottom: 10vh;
  position: relative;
}

.content-slider {
  height: 70vh;
  margin-bottom: 10vh;
  position: relative;
  background-color: var(--grey);
}

.menu-helper-product.bg-light-silver a {
  padding: 10px;
}

.ch.main .main-slider,
.cc.main .main-slider,
.cp.main .main-slider,
.pl.main .main-slider,
.seguro.main .main-slider,
.canais.main .main-slider,
.credenciais.main .main-slider,
.cartoes.main .main-slider,
.conta_bctt.main .main-slider,
.dicas.main .content-slider,
.artigo.main .content-small-slider .main-slider,
.institucional.main .content-small-slider .main-slider,
.informacao_financeira.main .content-small-slider .main-slider,
.premios.main .content-small-slider .main-slider,
.sustentabilidade.main .content-small-slider .main-slider,
.institucional.main .content-small-slider .main-slider,
.seguranca.main .content-small-slider .main-slider,
.faqsForm.main .content-slider,
.informativo.main .content-small-slider .main-slider,
.media.main .content-small-slider .main-slider,
.ca.main .main-slider {
  margin-bottom: 0;
}

.main-slider .carousel-indicators {
  bottom: 10%;
}

.main-slider .carousel-indicators button {
  width: 20vw;
  height: 10px;
  border-radius: 10px;
  border: 0;
  opacity: 1;
  margin: 0 15px;
}

.main-slider .carousel-indicators button.active {
  background-color: var(--red);
}

.main-slider .carousel-caption {
  bottom: 40%;
  text-align: left;
}

.vagas .main-slider.main-slider .carousel-caption,
.informacao_financeira .main-slider.main-slider .carousel-caption,
.premios .main-slider.main-slider .carousel-caption,
.sustentabilidade .main-slider.main-slider .carousel-caption,
.institucional .main-slider.main-slider .carousel-caption,
.seguranca .main-slider.main-slider .carousel-caption,
.informativo .main-slider.main-slider .carousel-caption,
.faqsForm .main-slider.main-slider .carousel-caption,
.artigo .content-small-slider .main-slider .carousel-caption {
  bottom: 30%;
  text-align: left;
  left: 0 !important;
  width: 100%;
  height: 100%;
}

.vagas .small-slider .carousel-caption,
.informacao_financeira .small-slider .carousel-caption,
.sustentabilidade .small-slider .carousel-caption,
.premios .small-slider .carousel-caption,
.institucional .small-slider .carousel-caption,
.seguranca .small-slider .carousel-caption,
.informativo .small-slider .carousel-caption,
.faqsForm .small-slider .carousel-caption,
.artigo .content-small-slider .main-slider .carousel-caption {
  top: 0%;
  bottom: auto !important;
  display: flex !important;
  align-content: center;
  align-items: center;
}

.vagas .content-small-slider img,
.premios .content-small-slider img,
.informacao_financeira .content-small-slider img {
  opacity: 0;
}

.vagas .content-small-slider,
.premios .content-small-slider,
.informacao_financeira .content-small-slider {
  background-color: var(--dark-silver);
}

.main-slider .carousel-caption h1 {
  font-size: 5vw !important;
}

.main-slider .cta {
  padding: 15px 5%;
}

.small-slider .carousel-caption {
  top: 15%;
}

.content-slider .carousel,
.content-slider .carousel-inner,
.content-slider .carousel-item {
  height: 100%;
}
.content-slider .carousel-caption {
  position: relative;
  right: auto;
  left: auto;
  margin: auto;
}
.content-slider .carousel-item.active {
  display: flex;
  align-content: center;
  align-items: center;
}

.content-slider .carousel-caption {
  width: 50vw;
  text-align: left;
}

.search-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #fff !important;
  color: #fff;
  opacity: 1;
  background: url("/application/themes/bctt-theme/img/icons/Search.svg");
  background-position: 98% center;
  background-repeat: no-repeat;
  font-size: 24px;
  background-size: 24px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border: none;
  box-shadow: 0;
  outline: 0 none;
}

input::-webkit-input-placeholder,
input::placeholder {
  opacity: 1;
  /* Change the opacity to 1 (fully opaque) */
}
/*SLIDERS*/

/*NOTICE*/
.blue-notice,
.red-notice {
  border-radius: 30px;
  position: relative;
  width: 100%;
  margin: auto;
}

.blue-notice .arrow-cta {
  margin-left: 15px;
}

.red-notice {
  border-radius: 30px;
  position: relative;
  color: var(--fff);
}

.red-notice .arrow-cta {
  margin-left: 15px;
}

.close-notice {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.hidden {
  display: none;
}
/*NOTICE*/

/*GRID*/
/*DICAS*/
.dicas-grid .container {
  display: flex;
  flex-direction: column;
}

.dicas-grid .row {
  display: flex;
  flex-wrap: wrap;
}

.dicas-grid .big,
.dicas-grid .small {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.dicas-grid .content {
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
}

.dicas-grid .image {
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.dicas-grid .image,
.dicas-grid .content {
  border-radius: 25px;
}

.dicas-grid div.featured {
  height: 80vh;
}
.dicas-grid div.featured .big {
  padding-right: 25px;
}

.dicas-grid div.featured .small div.row:nth-of-type(1) {
  padding-bottom: 12.5px;
}

.dicas-grid div.featured .small div.row:nth-of-type(2) {
  padding-top: 12.5px;
}

.dicas-grid div.unfeatured {
  height: 30vh;
  padding-top: 25px;
}

.dicas-grid div.unfeatured .big {
  padding-right: 25px;
}

.dicas-grid div.featured .big,
.dicas-grid div.unfeatured .small {
  height: 100%;
}
.dicas-grid div.featured .small .row {
  height: 50%;
}
.dicas-grid div.unfeatured .small .row {
  height: 100%;
}

.dicas-grid h4 {
  position: absolute;
  bottom: 5%;
  width: 85%;
}

.dicas-grid .grid-inner {
  border-radius: 40px;
  padding: 5%;
  position: relative;
  min-height: 100%;
  cursor: pointer;
}

.tips .shadow-card img {
  width: 100%;
}

.tips .col-12 {
  margin-bottom: 50px;
}

/*TWO ROWS*/
.grid-two-rows-three-cols .grid-inner {
  border-radius: 40px;
  position: relative;
  min-height: 400px;
  margin-bottom: 50px;
}

.two-rows-three-cols-quick-links .col-12,
.faqs .col-12 {
  margin-bottom: 50px;
}

.four-columns-icons .col-12 {
  margin-bottom: 50px;
}

.grid-two-rows-three-cols h4 {
  position: absolute;
  bottom: 5%;
  width: calc((100% - 6rem));
}

.one-row-two-cols-w-card h4 {
  position: relative;
  top: 85%;
}

.one-row-two-cols-w-card-reverse h4 {
  position: relative;
  top: 85%;
}

.grid-two-rows-three-cols .poupanca .icon-3d,
.grid-two-rows-three-cols .fixa .icon-3d,
.grid-two-rows-three-cols .credito .icon-3d {
  position: absolute;
  top: -8%;
  right: 15%;
  max-width: 20vw;
}

/*ONE ROW*/
.four-columns-icons .shadow-card {
  border-radius: 10px;
  height: 15vh;
  display: flex;
  align-content: center;
  align-items: center;
  align-self: center;
  width: 60%;
}
.grid-one-row-three-cols .grid-inner {
  border-radius: 40px;
  position: relative;
  min-height: 400px;
  margin-bottom: 50px;
}

.grid-one-row-three-cols h4 {
  position: absolute;
  bottom: 5%;
  width: calc((100% - 6rem));
}
/*GRID*/

/*ACCORDIONS*/
.accordion-links .row:not(.modal.fade .row) {
  padding: 35px 50px;
  border-radius: 25px;
  border: 1px solid var(--dark-silver);
  cursor: pointer;
}

.schedules .row.border {
  padding: 35px 50px;
  border-radius: 25px;
  border: 1px solid var(--dark-silver) !important;
}

.schedules .border {
  cursor: pointer;
}

.informacao_financeira .accordion-button {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 50px 25px;
}

.informacao_financeira .accordion-item {
  border: none !important;
  border-bottom: 1px solid black !important;
}

.informacao_financeira .accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.accordion-item img {
  cursor: pointer;
}

.accordion-button:focus-visible,
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
/*ACCORDIONS*/

/*FAQS*/
.faqs {
  background-color: var(--black);
  background-repeat: no-repeat;
  background-position: right center;
}
/*FAQS*/

/*CARDS*/
.card {
  border-radius: 40px;
}

/* .one-row-two-cols-w-negative-card-right .shadow-card {
  position: fixed;
  top: 20vh;
  right: 3%;
  width: 25vw;
  z-index: 1;
} */

.ch .one-row-two-cols-w-card .shadow-card {
  background-color: var(--red);
  background-repeat: no-repeat;
  background-position: right center;
}

.conta_bctt .one-row-two-cols-w-card-reverse .shadow-card {
  background-image: url("/application/themes/bctt-theme/img/3d/ch_home_dark.png");
  background-repeat: no-repeat;
  background-position: right 10%;
  background-size: 70%;
  padding: 3rem 2rem !important;
}

.card-bordered {
  border-radius: 40px;
  border: 1px solid #000;
}

.card-bordered-green {
  border-radius: 40px;
  border: 1px solid var(--green);
}

.card-with-image-image {
  background-image: url("/application/themes/bctt-theme/img/html/trans_credito.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 60vh;
}

/*CARDS*/

/*FOOTER*/
.download-app-footer {
  position: relative;
  bottom: 0;
}

.footer-menu {
  list-style-type: none;
}

.footer-menu li {
  line-height: 40px;
}

footer a {
  text-decoration: none;
  color: var(--ink);
}
/*FOOTER*/

/*CHAT*/
.chat {
  position: fixed;
  right: 0;
  top: 40vh;
  background: var(--white);
  padding: 20px;
  padding-right: 0;
  border-radius: 20px;
  width: 25vw;
  z-index: 99;
  display: none;
}

.cta-help {
  position: absolute;
  right: 0;
  top: 25%;
  cursor: pointer;
}
/*CHAT*/

/*NOTES*/
.notes .container {
  padding-top: 7%;
  padding-bottom: 7%;
}
.notes-tables .container {
  padding-top: 7%;
  padding-bottom: 7%;
}
/*NOTES*/

/*TABS*/
.tabs .nav-pills .active a {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

.tabs a {
  color: var(--dark-silver);
}

.tabs li {
  padding-right: 25px;
  padding-bottom: 10px;
}
/*TABS*/

/*MARKER*/
progress {
  /* Positioning */
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  /* Dimensions */
  width: 100%;
  height: 0.25em;

  /* Reset the apperance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Get rid of the default border in Firefox/Opera. */
  border: none;

  /* For Firefox/IE10+ */
  background-color: transparent;

  /* For IE10+, color of the progress bar */
  color: var(--red);
}

progress::-webkit-progress-bar {
  background-color: transparent;
}

.flat::-webkit-progress-value {
  background-color: var(--red);
}

.flat::-moz-progress-bar {
  background-color: var(--red);
}

.single::-webkit-progress-value {
  background-color: transparent;
  background-image: -webkit-linear-gradient(left, transparent, var(--red));
}

.single::-moz-progress-bar {
  background-color: transparent;
  background-image: -moz-linear-gradient(left, transparent, var(--red));
}

.multiple::-webkit-progress-value {
  background-image: -webkit-linear-gradient(
      -45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.1) 33%,
      rgba(0, 0, 0, 0.1) 66%,
      transparent 66%
    ),
    -webkit-linear-gradient(left, green, var(--red));
}

.multiple::-moz-progress-bar {
  background-image: -moz-linear-gradient(
      -45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.1) 33%,
      rgba(0, 0, 0, 0.1) 66%,
      transparent 66%
    ),
    -moz-linear-gradient(left, green, var(--red));
}

.progress-container {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  height: 0.25em;
  display: block;
}

.progress-bar {
  background-color: var(--red);
  width: 50%;
  display: block;
  height: inherit;
}
/*MARKER*/

/*FORM*/
form input {
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #000 !important;
  width: 100%;
  margin-top: 25px;
  background-color: transparent;
}

form textarea {
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #000 !important;
  width: 100%;
  margin-top: 25px;
  background-color: transparent;
}

form input[type="checkbox"] {
  float: left;
  width: 50px;
  margin-top: 6px;
}
/*FORM*/

/*CC*/
/* #simulation {
  position: absolute;
  bottom: 0;
  right: 20vw;
  background: #fff;
  width: 27vw;
  text-align: center;
  padding: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: red;
} */

#simulation {
  position: absolute;
  top: 10%;
  right: 7vw;
  background: var(--white);
  width: 40vw;
  text-align: center;
  padding: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: var(--red);
  height: 90%;
}

#simulationButton {
  position: absolute;
  bottom: 0;
  right: 7vw;
  background: var(--white);
  width: 40vw;
  text-align: center;
  padding: 10px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: var(--red);
  height: 10%;
  z-index: 999;
}
/*CC*/

/*CAN*/
input.search-input::placeholder {
  opacity: 1 !important;
  color: var(--white);
}
.four-cards-in-line h4 {
  position: relative !important;
  top: 85% !important;
}
.fixed-bottom a {
  padding: 10px 30px;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-silver);
  color: var(--white);
  text-align: center;
  z-index: 1000;
}

.pointer {
  cursor: pointer;
}

#fixed-menu {
  background-color: var(--white);
  z-index: 9999;
  width: 100%;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}

.text-left {
  text-align: left;
}

.header li.flex-fill,
.fixed {
  padding: 0px 10px;
}
.cta-default.black:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

a.cta.cta-fill-red:hover {
  background: var(--white) !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

a.cta.cta-fill-white:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
}

ul.menu a:hover,
footer a:hover,
.topbar a:hover {
  color: var(--red) !important;
}

.faqs-page #selector select option {
  color: var(--ink);
  position: relative;
  top: 5px;
}

.faqs-page #selector {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.faqs-page select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.faqs-page select.input-lg {
  background: transparent !important;
  height: 50px !important;
  line-height: 25px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--black) !important;
  border-radius: 0 !important;
}

.faqs-page .form-control:focus {
  border-bottom: 1px solid var(--black) !important;
  background-color: transparent !important;
  border-color: var(--black) !important;
  outline: 0;
  box-shadow: none !important;
}

.faqs-page #selector {
  position: relative;
  display: inline-block;
}

.faqs-page #selector .dropdown-container {
  position: relative;
  display: inline-block;
}

.faqs-page #selector .form-control {
  padding-right: 30px;
  border-bottom-right-radius: 0;
}

.faqs-page #selector .arrow-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  pointer-events: none;
}

.faqs-page #selector .arrow-icon-2 {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  pointer-events: none;
}

.faqs-page .container-sub-categorias {
  padding-left: 25%;
}

.faqs-page .container-sub-categorias a {
  color: var(--ink);
}
.modal.fade {
  z-index: 4;
}

.modal-dialog {
  width: 70%;
  max-width: 70%;
}

button.close {
  position: absolute;
  right: 0;
  margin-right: 1rem;
  background: transparent;
  border: none;
}

button span.closeX {
  font-size: 3vh !important;
}
.menu-ca .submenu {
  width: 60vw;
  z-index: 3;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-top: 8vh;
  position: absolute;
  /* transform: translate(-50%, -0%); */
  background: #fff;
  padding-bottom: 4vh;
  left: auto;
  right: auto;
}
.submenu-content a {
  display: inline-block;
  width: 100%;
}
.br-40 {
  border-radius: 40px;
}
.menu-ca .submenu .activeItem {
  color: var(--red) !important;
}

.menu-ca .submenu-item img {
  margin-left: 15px;
  margin-bottom: 5px;
}

.menu-ca .sub-menu-ul {
  list-style: none;
  padding: 0;
}

.menu-ca ul.sub-menu-ul li {
  float: none !important;
  display: flex;
}

.menu-ca .sub-menu-ul li a {
  padding-bottom: 10px;
  color: var(--ink);
}

.menu-ca .sub-menu-img-wrapper {
  height: 20vh;
  width: 20vh;
}

.menu-ca .submenu-content a {
  color: var(--ink) !important;
  text-align: left !important;
  padding-bottom: 1rem;
}

.menu-ca .submenu-content a:hover {
  color: var(--red) !important;
}

.close {
  display: block;
}

.open {
  display: none;
}

.header .cta-header,
.logo {
  z-index: 4;
  position: relative;
}

.dropdown-toggle::after {
  content: none !important;
}

.nav-link {
  padding: 0;
}

#selector .form-control {
  cursor: pointer;
}
/*CAN*/

/*MOBILE*/
/*X-Small devices (portrait phones, less than 576px)
/*No media query for `xs` since this is the default in Bootstrap

/*XXX-Large devices (larger desktops, 1400px and down)*/
.main-slider.main-slider .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 0 !important;
    top: 0;
    width: 100%;
    bottom: auto;
    height: 100%;
    right: auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
  }
@media (max-width: 1600px) {
  .main-slider.main-slider .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 0 !important;
    top: 0;
    width: 100%;
    bottom: auto;
    height: 100%;
    right: auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
  }

  .main-slider .carousel-caption h1 {
    font-size: 4vw !important;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  h4.titles-2 {
    font-size: 20px;
  }

  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d {
    max-width: 14vw;
    top: 0;
  }

  .grid-two-rows-three-cols .ccredito .icon-3d {
    max-width: 14vw;
  }

  .spacer-50 {
    height: 30px;
  }

  .spacer-75 {
    height: 50px;
  }

  .spacer-100 {
    height: 75px;
  }

  .spacer-150 {
    height: 100px;
  }
}

/*XX-Large devices (larger desktops, 1400px and down)*/
@media (max-width: 1500px) {
}

.hideDesktop {
  display: none;
}

.hideMobile {
  display: inline;
}

/*X-Large devices (large desktops, 1200px and down)*/
@media (max-width: 1199px) {
  .hideDesktop {
    display: inline;
  }

  .hideMobile {
    display: none;
  }
  p,
  .cta {
    font-size: 20px !important;
  }

  p.body-text-1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 40px;
  }

  .alert-blue p,
  .alert-red p {
    font-size: 20px !important;
  }

  .menu-helper ul {
    flex-wrap: wrap;
  }

  .menu-helper ul li {
    float: none;
    margin: auto;
    flex: 33% !important;
    padding: 10px;
  }

  footer .col-12 {
    margin-bottom: 50px;
  }

  .close {
    display: none;
  }

  .open {
    display: block;
    position: absolute;
    transform: none;
    margin-top: 10vh !important;
    background: #fff;
    width: 100vw;
    left: 0;
    height: auto;
    z-index: 3;
    box-shadow: 0px 6px 6px -5px rgba(40, 38, 44, 0.19);
    border-top: 1px solid #000;
    padding: 0;
  }

  header .menu li a {
    text-align: left;
  }

  header .menu .cta {
    text-align: center;
  }

  header .open .menu {
    display: inline-block !important;
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .menu-ca .submenu a {
    font-size: 17px !important;
  }

  .header .open li.flex-fill,
  .fixed {
    width: 100%;
    padding: 10px;
  }

  .header .open .cta-header {
    width: 50% !important;
    float: left;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

    header, .header.container-fluid.menu-ca {
    max-width: 100% !important;
    width: 100%;
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  header .col-xl-2 {
    padding-left: 5%;
  }
  header .col-xl-10 {
    padding-right: 5%;
  }

  .menu-ca .submenu {
    position: absolute;
    top: 0;
    z-index: 999;
    transform: none;
    padding-top: 0;
    width: 100%;
    border-top: 1px solid #000 !important;
    border-radius: 0;
    padding-top: 25px;
  }

  .accordion-links img {
    right: -25px;
  }

  #fixed-menu-ctas li a {
    width: 90%;
    font-size: 17px !important;
  }

  footer {
    margin-bottom: 75px;
  }
}

/*Large devices (desktops, 992px and down)*/
@media (max-width: 992px) {
  .main-slider .cta {
    padding: 10px 15%;
  }

  .main-slider .carousel-indicators {
    bottom: 2%;
  }

  .main-slider {
    margin-bottom: 5vh;
  }

  .container,
  .container-fluid {
    max-width: 95% !important;
    width: 95%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d {
    top: 8%;
  }

  h4 {
    font-size: 20px;
  }

  .grid-two-rows-three-cols .grid-inner,
  .grid-one-row-three-cols .grid-inner {
    min-height: 300px;
  }

  .four-rows-unordered-row.mt-5.mb-5 .col-2 {
    padding: 0;
  }

  .negative-right-5 {
    right: 0;
  }

  .two-rows-two-cols-checks .col-1,
  .one-row-simple-checks .col-1 {
    padding: 0;
  }

  .dicas-grid div.featured .big,
  .dicas-grid div.unfeatured .big {
    padding-right: 0;
  }

  .dicas-grid div.featured .big,
  .dicas-grid div.unfeatured .small {
    height: auto;
  }

  .dicas-grid div.featured,
  .dicas-grid div.unfeatured {
    height: auto;
  }

  .dicas-grid div.featured .small div.row:nth-of-type(1),
  .dicas-grid div.featured .small div.row:nth-of-type(2),
  .dicas-grid div.unfeatured {
    padding-top: 0;
    padding-bottom: 0;
  }

  .dicas-grid .min-mobile {
    min-height: 30vh;
    margin-bottom: 50px;
  }

  .faqs-page .container-sub-categorias {
    padding-left: 0;
  }

  .carousel-indicators {
    margin-right: 5%;
    margin-left: 5%;
  }

  .four-steps-green-icon .mr-5 {
    margin-right: 0 !important;
    margin: auto;
  }

  .two-rows-two-cols-checks {
    margin-left: 5%;
  }

  .schedules img.float-right {
    display: none;
  }
}

/*Medium devices (tablets, 768px and down)*/
@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .one-row-two-cols-w-card .shadow-card {
    margin-right: auto;
  }

  .grid-two-rows-three-cols .poupanca .icon-3d,
  .grid-two-rows-three-cols .fixa .icon-3d,
  .grid-two-rows-three-cols .credito .icon-3d {
    max-width: 25vw;
    top: 0;
  }

  .grid-two-rows-three-cols .ccredito .icon-3d {
    max-width: 25vw;
  }

  .menu-helper img {
    display: none;
  }

  .form .p-7,
  .faqs-form .p-7 {
    padding: 2rem !important;
  }

  .header .open li.flex-fill,
  .fixed {
    width: 100% !important;
  }

  .header .open .cta-header {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*Small devices (landscape phones, 576px and down)*/
@media (max-width: 576px) {
  .header.container-fluid {
    width: 100%;
    margin: 0;
  }

  .menu-helper ul {
    flex-wrap: wrap;
  }

  .menu-helper ul li {
    flex: 33.3% !important;
  }

  .menu-helper ul li a {
    font-size: 17px !important;
  }

}

/*Small devices (landscape phones, 576px and down)*/
@media (max-width: 400px) {
  #fixed-menu-ctas li,
  #fixed-menu-ctas li a {
    width: 100% !important;
    margin-bottom: 10px;
  }

  #fixed-menu-ctas li a {
    float: none;
    width: 80% !important;
  }

  #fixed-menu-ctas ul {
    display: block !important;
  }

  #fixed-menu-ctas {
    max-height: 140px;
  }

  footer {
    margin-bottom: 140px;
  }
}

.navbar-toggler {
  float: right;
  height: 100%;
  border: none;
  text-align: right;
}

.navbar-toggler:focus-visible,
.navbar-toggler:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 2em;
  height: 2em;
}

.navbar-collapse.show {
  height: 100%;
  position: absolute;
  top: 90px;
  width: 100%;
  left: 0;
  background: #fff;
  z-index: 2;
  display: flex;
}
/*MOBILE*/


/* TOP BANNER SLIDES */
/* Wrapper controls positioning */
.slide-wrapper {
    position: relative;
    width: 100%;
}

/* Image defines height naturally */
.slide-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay content centered vertically */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: flex-start; /* left align */
    z-index: 2;
}

/* Optional overlay if image exists */
.slide-wrapper:not(.no-image)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* If NO image, create safe height */
.slide-wrapper.no-image {
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
}

.slide-wrapper.no-image .slide-content {
    position: relative;
    color: var(--ink);
}
