@import "fonts.css";

/* ===== RESET E ESTILOS GLOBAIS ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'BradescoSans', serif;
}

body {
  font-family: 'BradescoSans', serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1440px !important;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* ===== ESTRUTURA PRINCIPAL ===== */
.main-content-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-section,
.diferenciais-section,
.academy-section,
.como-levar-section,
.form-section,
.faq-section {
  margin: 0 auto;
  border-radius: 0;
}

.diferenciais-section,
.academy-section,
.como-levar-section,
.form-section {
  padding: 40px;
}

.divider,
.divider-full,
.divider-right {
  margin: 20px 0;
}

/* ===== DIVISORES ===== */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #cc092f, transparent);
  margin: 0 auto;
  max-width: 1440px;
}

.divider {
  height: 4px;
  background: linear-gradient(to right, transparent, #cc092f, transparent);
  margin: 40px 0;
}

.divider-full {
  height: 4px;
  width: 100%;
  background: #cc092f;
  margin: 40px 0;
  border-radius: 2px;
}

.divider-center,
.divider-center-white,
.divider-left-white {
  height: 4px;
  width: 80px;
  margin: 10px auto;
  border-radius: 2px;
}

.divider-center {
  background: #cc092f;
}

.divider-center-white {
  background: white;
}

.divider-left {
  background: #cc092f;
  height: 4px;
  width: 80px;
  margin: 10px 0;
  border-radius: 2px;
}

.divider-left-white {
  background: white;
}

.divider-right {
  height: 4px;
  width: 70%;
  background: #cc092f;
  margin: 40px 0 40px auto;
  border-radius: 2px;
}

.custom-white-divider {
  height: 4px;
  width: 80px;
  background: #ffffff;
  margin: 10px 0;
  border-radius: 3px;
  position: relative;
  z-index: 3;
}

/* ===== CARROSSEL ===== */
.carousel-section {
  padding: 40px 0;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 15px;
  align-items: stretch;
}

.carousel-item {
  /* flex-shrink: 0; */
  transition: all 0.3s ease;
  display: flex;
  flex: 0 0 calc(100% / 4.5 - 9px);
}

/* Garantir que todos os cards sejam visíveis */
.carousel-item:last-child {
  visibility: visible !important;
  opacity: 1 !important;
}

.carousel-card {
  background: #f0f1f5;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 250px;
  width: auto;
  /* width: 230px; */
  margin: 0 auto;
  position: relative;
}

.card-icon-container {
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 38px;
}

.card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.card-title {
  font-weight: 600;
  line-height: 1.2;
  width: 100%;
  margin: 0 0 16px 0;
  padding: 0;
  text-align: left;
}

.card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-button {
  background: white;
  color: #193f4d;
  border: 1px solid #193f4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-button:hover {
  background: #f0f0f0;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-button:active {
  transform: translateY(0);
}

/* ===== SEÇÃO DE VÍDEOS ===== */
.academy-section {
  background-color: #002a3a;
  color: white;
}

.academy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 40px;
}

.video-btn {
  background: #204553;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 160px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-btn .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.video-btn:hover {
  background: #e0e0e0;
  color: black;
}

.video-btn:hover .btn-icon,
.video-btn.active .btn-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(20%) saturate(1123%) hue-rotate(156deg) brightness(93%) contrast(88%);
}

.video-btn.active {
  background: white;
  color: #204553;
}

.btn-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.video-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.video-main {
  flex: 1;
  min-width: 300px;
}

.video-player {
  width: 100%;
  height: 500px;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== SIDEBAR DE VÍDEOS DINÂMICA ===== */
.sidebar-section-title {
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0 10px 0;
  color: white;
  padding-bottom: 8px;
  border-bottom: 1px solid #30525e;
}

.sidebar-section-title:first-child {
  margin-top: 0;
}

.video-section,
.download-section {
  margin-bottom: 20px;
  display: block;
}

.video-sidebar-frame {
  flex: 0 0 300px;
  background-color: #193f4d;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: block;
}

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

.video-list-item {
  color: white !important;
  border: 1px solid transparent !important;
  margin-bottom: 8px !important;
  border-radius: 6px !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border-bottom: none !important;
  opacity: 0.8;
}

.video-list-item:hover {
  background-color: #2a4d5a !important;
  border-color: #193f4d !important;
  opacity: 1;
}

.video-list-item.active {
  background-color: #2a4d5a !important;
  border-color: #193f4d !important;
  opacity: 1;
}

.video-thumbnail {
  width: 60px;
  height: 45px;
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.video-info {
  flex: 1;
}

.video-info h4 {
  font-size: 0.9rem;
  margin: 0;
  font-weight: normal;
  line-height: 1.3;
}

.video-list-item .video-info h4 {
  color: white !important;
  font-size: 13px !important;
  margin: 0 !important;
}

.video-info p {
  font-size: 0.85rem;
  color: #777;
}

.download-section {
  display: block;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  text-decoration: none;
  color: white;
  margin-bottom: 8px;
  visibility: visible;
  opacity: 0.8;
}

.download-link:hover {
  color: white;
  opacity: 1;
}

.download-left {
  display: flex;
  align-items: center;
}

.download-icon-extrato {
  height: 16px;
  width: 16px;
  margin-right: 8px;
}

.download-text {
  font-size: 14px;
}

/* ===== SEÇÃO COMO LEVAR ===== */
.como-levar-section {
  color: white;
  padding: 60px 0;
}

.implementacao-container {
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  background-image: url("https://assets.bradesco/content/dam/portal-bradesco/html/corporate/solucoes-integradas/open-cash-hub/img/ComoLevarOpenCashHub.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1200px;
  min-height: 510px;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.como-levar-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 65%;
}

.card {
  flex: 1;
  min-width: 200px;
  background-color: #f0f1f5eb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: #333;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-header {
  margin-bottom: 15px;
}

.card a {
  color: #565656;
  text-decoration: underline;
}

.card a:hover {
  color: #333;
}

/* ===== SEÇÃO FORMULÁRIO ===== */
.form-section {
  padding: 60px 0;
  display: none;
}


.form-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.form-image {
  flex: 1;
  min-width: 300px;
}

.form-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.form-content {
  flex: 1;
  max-width: 520px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-group input:focus {
  border-color: #cc092f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(204, 9, 47, 0.2);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:focus-visible,
.form-group input:-webkit-autofill:hover {
  border: 1px solid #ddd !important;
  -webkit-text-fill-color: #333 !important;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group a {
  color: #47484c;
  text-decoration: underline;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  background-color: #335973;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.submit-btn:hover {
  background-color: #a00724;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* .submit-btn:disabled {
  background-color: #cccccc !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  transform: none !important;
}

.submit-btn:disabled:hover {
  background-color: #cccccc !important;
  transform: none !important;
  box-shadow: none !important;
} */

/* ===== SEÇÃO FAQ ===== */
.faq-section {
  background-color: #f0f1f5;
  padding: 60px 0;
}

.faq {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 20px 0;
}

.faq-categories {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-btn {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333;
}

.category-btn:hover {
  background-color: #e0e0e0;
  color: #193f4d;
}

.category-btn.active {
  background-color: #193f4d;
  color: white;
}

.category-btn.active .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

.category-btn:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(20%) saturate(1123%) hue-rotate(156deg) brightness(93%) contrast(88%);
}

.category-btn.active:hover {
  background-color: #193f4d;
  color: white;
}

.category-btn.active:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

.category-btn .btn-icon {
  filter: brightness(0) saturate(100%);
  transition: all 0.3s ease;
}

.faq-content {
  flex: 2;
  min-width: 300px;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-list {
  list-style: none;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #193f4d;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.arrow-icon {
  width: 30px;
  height: 30px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Estilos para a visualização de confirmação */
.confirmation-view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.confirmation-content {
  text-align: center;
  max-width: 500px;
  padding: 40px 0;
}

.confirmation-icon {
  margin-bottom: 10px;
}

.confirmation-icon img {
  width: 60px;
  height: 60px;
}

.confirmation-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.confirmation-message {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.confirmation-back-btn {
  background-color: #193f4d;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirmation-back-btn:hover {
  background-color: #2a4d5a;
  transform: translateY(-2px);
}

/* Transição suave entre as views */
.form-view,
.confirmation-view {
  transition: all 0.3s ease-in-out;
}

.title-word {
  font-weight: 100;
}

.footer {
  z-index: 10 !important;
  position: relative;
}

.container-bia-qrcode {
  height: 530px !important;
}

/* TESTE */



.buscaMobile {
  background: url("https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/svg/icon-lupa.svg") 0 0 no-repeat !important;
  top: 20px !important;
  margin-top: 10px;
}

.mobileMenu {
  background: url("https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/svg/icon-menu.svg") 0 0 no-repeat !important;
  top: 22px !important;
  margin-top: 10px;
}

header.headerMobile {
  height: 80px;
}

div.comboSegmentos {
  background: #221816;
}

div.comboSegmentos>h2 span:after {
  display: block;
  content: "\203A";
  font-size: 35px;
  font-weight: normal;
  top: -12px;
  right: -2px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-transform: rotate(10deg);
  position: absolute;
}

div.comboSegmentos.active h2 span:after {
  display: block;
  content: "\2715";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-weight: bold;
}

div.btn-parceiros,
div.nao-correntista,
div.canal-consorciado {
  position: absolute;
  right: 240px;
  top: 7px;
  display: none;
}

div.btn-parceiros a,
div.nao-correntista a,
div.canal-consorciado a {
  cursor: pointer;
  display: table;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #efefef));
  background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  width: 161px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  color: #1f1f1f;
  text-transform: uppercase;
}

div.btn-parceiros a:hover,
div.nao-correntista a:hover,
div.canal-consorciado a:hover {
  color: #5894e8;
}

div.nao-correntista {
  display: none;
  position: absolute;
  right: 235px;
  top: 7px;
  width: 160px;
}

/* div.nao-correntista:after { content: ''; width: 1px; height: 20px; background: #7f7faf; position: absolute; right: -55px; top: 4px; } */
div.nao-correntista .btn-nao-correntista {
  width: 164px;
  height: 26px;
  text-align: center;
  padding: 0 8px;
  border: 0;
  display: table;
  line-height: 24px;
  background: #cc092f;
  border-bottom: 1px solid #969696;
  border-right: 1px solid #969696;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

div.nao-correntista .btn-nao-correntista:hover {
  background: #a40625;
}

div.nao-correntista .tipCartoes {
  background: #fff;
  margin-top: 7px;
  position: relative;
  background-color: #FFF;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 10px;
  width: 274px;
  display: none;
}

div.nao-correntista .tipCartoes:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ddd;
}

div.nao-correntista .tipCartoes p {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

div.nao-correntista .tipCartoes label {
  font-size: 12px;
}

div.nao-correntista .tipCartoes label span {
  position: relative;
  top: -2px;
}

div.nao-correntista .tipCartoes #closeTooltip {
  display: block;
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 0 5px 2px 5px;
  color: #000;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 15px;
  cursor: pointer;
}

#MainMenuMobile div.btn-parceiros,
#MainMenuMobile div.nao-correntista,
#MainMenuMobile div.canal-consorciado {
  position: absolute;
  display: block;
  right: 0;
  top: 54px;
  height: 54px;
  width: 100%;
}

#MainMenuMobile div.btn-parceiros a,
#MainMenuMobile div.nao-correntista a,
#MainMenuMobile div.canal-consorciado a {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
}

#MainMenuMobile ul li.resultado-busca {
  display: none !important;
}

#MainMenuMobile div.btn-parceiros a {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

div.area-restrita {
  position: absolute;
  left: 206px;
  top: 7px;
  display: table;
}

div.area-restrita a {
  width: 143px;
  height: 26px;
  display: block;
  line-height: 26px;
  font-size: 12px;
  background: #eceff1;
  border-radius: 3px;
  text-align: center;
  color: #335973;
  text-decoration: none;
  font-weight: 700;
}

div.area-restrita a:hover {
  background: #b2d6e4;
  color: #3a525a;
}

/* Main Header */
header.mainHeader {
  width: calc(100% - 240px);
  margin: 50px 0 0;
  display: table;
  z-index: 2;
  position: relative;
}

header.mainHeader h1 {
  width: 188px;
  height: 135px;
  background: #335973;
  line-height: 85px;
  float: left;
  position: relative;
  padding: 10px;
}

header.mainHeader h1 img {
  padding: 0;
  margin: 0 auto;
  display: block;
  width: 106px;
  height: auto;
}

header.mainHeader h1:after {
  content: '';
  width: 80%;
  height: 1px;
  position: absolute;
  background: #e1e1e1;
  bottom: 0;
  left: 10%;
}

header.mainHeader a.mobileMenu {
  display: none;
}

.menu__lateral {
  float: left;
  margin-top: 50px;
}

.menu__lateral h1 {
  width: 188px;
  height: 135px;
  background: #cc092f;
  line-height: 85px;
  position: relative;
  padding: 10px;
}

.menu__lateral h1 img {
  padding: 0;
  margin: 0 auto;
  display: block;
  width: 106px;
  height: auto;
}

a.botaoAbraConta {
  display: block;
  width: 100%;
  height: 54px;
  box-sizing: border-box;
  line-height: 54px;
  background: #eceff1;
  text-align: center;
  color: #335973;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  float: left;
  margin: 0 15px 15px 0;
}

div.breadcrumb {
  width: calc(100% - 240px);
  height: 43px;
  margin-top: 30px;
  margin-bottom: 0;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
  float: right;
}

div.breadcrumb ul.links {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 43px;
}

div.breadcrumb ul.links li {
  float: left;
  font-size: 13px;
  height: 43px;
  line-height: 43px;
  position: relative;
  color: #fff;
}

div.breadcrumb ul.links li a {
  color: #fff;
  opacity: 0.65;
  text-decoration: none;
  padding: 0 10px 0 10px;
}

div.breadcrumb ul.links li.last {
  background: none;
}

div.breadcrumb ul.links li.last a {
  color: #fff;
  opacity: 1;
}

/* End: Busca */
ul.navSeg {
  max-width: calc(100% - 450px);
  list-style: none;
  margin: 0 0 0 50px;
  padding: 0;
  display: table;
  float: right;
  position: relative;
  z-index: 1;
}

ul.navSeg>li {
  float: left;
  margin-right: 20px;
  position: relative;
  height: 65px;
}

ul.navSeg>li:last-child {
  margin-right: 0;
}

ul.navSeg>li.sub>a:after,
ul.navSeg>li.sub>.wlauto a:after,
ul.navSeg>li.sub>.wlautoHover a:after {
  content: '';
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/svg/icon_seta_v_-01.svg) center center no-repeat;
  position: absolute;
  width: 9px;
  height: 7px;
  top: 17px;
  right: -13px;
  transition: all ease 0.4s;
}

ul.navSeg>li.sub:hover>a:before,
ul.navSeg>li.sub:hover>.wlauto a:before,
ul.navSeg>li.sub:hover>.wlautoHover a:before {
  display: none;
}

ul.navSeg>li>a,
ul.navSeg>li>.wlauto a,
ul.navSeg>li>.wlautoHover a {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.60;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
  display: block;
  height: 100%;
  box-sizing: border-box;
}

ul.navSeg>li>a span,
ul.navSeg>li>.wlauto a span,
ul.navSeg>li>.wlautoHover a span {
  text-transform: none;
  font-size: 9px;
  display: block;
}

ul.navSeg>li.active>a,
ul.navSeg>li.active>.wlauto a,
ul.navSeg>li.active>.wlautoHover a {
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
  line-height: 25px;
  margin-top: -17px;
}

ul.navSeg>li.active>a span,
ul.navSeg>li.active>.wlauto a span,
ul.navSeg>li.active>.wlautoHover a span {
  position: relative;
  bottom: -10px;
}

ul.navSeg>li:hover>a,
ul.navSeg>li:hover>.wlauto a,
ul.navSeg>li:hover>.wlautoHover a {
  color: #ffffff;
  opacity: 1;
}

ul.navSeg>li div.navCnt {
  background: #ffffff;
  width: 240px;
  border-bottom: 2px solid #80a7b6;
  border-top: 2px solid #80a7b6;
  position: absolute;
  top: 45px;
  right: -10px;
  display: none;
  -webkit-box-shadow: -1px 2px 5px 0 #686868;
  box-shadow: -1px 2px 5px 0 #686868;
}

ul.navSeg>li div.navCnt.emp {
  width: 240px;
}

ul.navSeg>li div.navCnt.emp a.maisperfis {
  display: block;
  border-top: 2px solid #80a7b6;
  font-size: 13px;
  color: #80a7b6;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
}

ul.navSeg>li div.navCnt.last {
  right: -10px;
}

ul.navSeg>li div.navCnt ul.nav {
  list-style: none;
  margin: 0 auto;
  padding: 0 10px;
}

ul.navSeg>li div.navCnt ul.nav:after {
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #80a7b6;
  position: absolute;
  top: -1px;
  right: 10px;
}

ul.navSeg>li div.navCnt ul.nav>li {
  border-top: 1px solid #dbdbdb;
}

ul.navSeg>li div.navCnt ul.nav>li:first-child {
  border-top: 0;
}

ul.navSeg>li div.navCnt ul.nav>li:after {
  content: '';
  width: calc(100% - 32px);
  height: 1px;
  display: block;
  background-color: #EBEBEB;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

ul.navSeg>li div.navCnt ul.nav a {
  padding: 12px;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 13px;
  color: #000;
  text-align: left;
}

ul.navSeg>li div.navCnt ul.nav a:hover {
  color: #80a7b6;
  text-decoration: underline;
  background-color: transparent;
}

ul.navSeg>li div.navCnt ul.nav.sublvl {
  display: none;
}

div.holderFixed {
  width: 100%;
  position: fixed;
  top: 45px !important;
  left: 0;
  display: none;
  z-index: 10;
}

/* Header Mobile */
header.headerMobile {
  width: 1280px;
  background: #fff;
  height: 80px;
  box-sizing: border-box;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #CECECE;
  margin: 0 auto;
  position: relative;
}

header.headerMobile h1 {
  width: 142px;
}

header.headerMobile a.buscaMobile {
  position: absolute;
  top: 19px;
  right: 68px;
  width: 35px;
  height: 40px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/busca-icon.png) 0 0 no-repeat;
  overflow: hidden;
  text-indent: -1000px;
}

header.headerMobile a.buscaMobile.close {
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/busca-icon.png) 0 -40px no-repeat;
}

header.headerMobile a.mobileMenu {
  position: absolute;
  top: 19px;
  right: 20px;
  width: 32px;
  height: 40px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/menu-icon.png) 0 0 no-repeat;
  display: block;
  overflow: hidden;
  text-indent: -1000px;
}

header.headerMobile a.mobileMenu.close {
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/menu-icon.png) 0 -40px no-repeat;
}

header.headerMobile div.busca {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  top: 26px;
  right: 72px;
}

header.headerMobile div.busca #textobusca {
  max-width: 190px;
}

/* End: Header Mobile */
/* Combo de Segmentos */
div.comboSegmentos {
  background-color: transparent;
  margin-bottom: -15px;
  padding: 15px 20px;
  position: relative;
  top: -15px;
  border-bottom: 1px solid #d6d6d6;
  display: none;
}

div.comboSegmentos>.titleSeg {
  color: #4d4e53;
  font-size: 15px;
  cursor: pointer;
  position: relative;
}

div.comboSegmentos>.titleSeg span:after {
  display: block;
  content: '\203A';
  font-size: 35px;
  font-weight: normal;
  top: -12px;
  right: 0;
  transform: rotate(90deg);
  -ms-transform: rotate(10deg);
  position: absolute;
}

div.comboSegmentos.active {
  background-color: #ffffff;
}

div.comboSegmentos.active .titleSeg {
  color: #c80025;
  margin-bottom: 10px;
}

div.comboSegmentos.active .titleSeg span:after {
  display: block;
  content: '\2715';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-weight: bold;
}

div.comboSegmentos>ul {
  margin: 0;
  padding: 0 0 15px 0;
  list-style: none;
  visibility: hidden;
  display: none;
}

div.comboSegmentos>ul>li a {
  color: #222222;
  font-size: 13px;
  text-decoration: none;
}

div.comboSegmentos>ul>li ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  box-sizing: border-box;
}

div.comboSegmentos>ul>li.sub {
  margin-top: 15px;
}

div.comboSegmentos>ul>li.sub>a,
div.comboSegmentos>ul>li.sub>.wlauto a,
div.comboSegmentos>ul>li.sub>.wlautoHover a {
  font-weight: bold;
  margin-bottom: 10px;
  display: table;
}

/* End: Combo de Segmentos */
/* Main Menu */
nav#mainMenu {
  width: 188px;
  margin: 0 50px 15px 0;
  float: left;
}

nav#mainMenu>h2>ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav#mainMenu>h2>ul>li {
  width: 100%;
  display: table;
  box-sizing: border-box;
  background: #4b708b;
}

nav#mainMenu>h2>ul>li.active {
  background: #194459 !important;
}

nav#mainMenu>h2>ul>li:hover {
  background: #194459 !important;
}

nav#mainMenu>h2>ul>li:hover>a {
  color: #FFF !important;
}

nav#mainMenu>h2>ul>li:hover>a::before {
  border-left: 0;
}

nav#mainMenu>h2>ul>li>a,
nav#mainMenu>h2>ul>li>.wlauto a,
nav#mainMenu>h2>ul>li>.wlautoHover a {
  color: #ffffff;
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 0 12px 20px;
  box-sizing: border-box;
  position: relative;
}

nav#mainMenu>h2>ul>li>a:hover,
nav#mainMenu>h2>ul>li>.wlauto a:hover,
nav#mainMenu>h2>ul>li>.wlautoHover a:hover {
  color: #6d8aa2;
  background: #f2f2f2;
}

nav#mainMenu>h2>ul>li:not(li:first-child)>a:after,
nav#mainMenu>h2>ul>li>.wlauto a:after,
nav#mainMenu>h2>ul>li>.wlautoHover a:after {
  content: '';
  width: 80%;
  height: 1px;
  position: absolute;
  background: #e1e1e1;
  top: -1px;
  left: 10%;
}

nav#mainMenu>h2>ul>li>ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  background: #f0f1f5;
}

nav#mainMenu>h2>ul>li>ul>li a {
  color: #47484C;
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  box-sizing: border-box;
  padding: 15px 20px;
  position: relative;
  border-left: 3px solid #47484c;
  left: 0;
}

nav#mainMenu>h2>ul>li>ul>li a:hover {
  color: #6d8aa2;
  border-left: 3px solid #6d8aa2;
}

nav#mainMenu>h2>ul>li>ul>li a span {
  display: block;
}

nav#mainMenu>h2>ul>li>ul>li.active>a,
nav#mainMenu>h2>ul>li>ul>li.active>.wlauto a,
nav#mainMenu>h2>ul>li>ul>li.active>.wlautoHover a {
  border-left: 3px solid #6d8aa2;
  z-index: 2;
  color: #6d8aa2;
}

nav#mainMenu>h2>ul>li>ul>li>ul {
  display: none;
  padding: 0;
  margin: 0;
}

nav#mainMenu>h2>ul>li>ul>li>ul li:first-child a:before {
  content: '';
  width: 90%;
  height: 1px;
  position: absolute;
  background: #e1e1e1;
  top: 0;
  left: 18px;
}

nav#mainMenu>h2>ul>li>ul>li>ul li:first-child a:before:first-child {
  display: none;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul {
  display: none;
  padding: 0;
  margin: 0;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul li:first-child a:before {
  content: '';
  width: 90%;
  height: 1px;
  position: absolute;
  background: #e1e1e1;
  top: 0;
  left: 18px;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul li:first-child a:before:first-child {
  display: none;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul li>ul {
  display: none;
  padding: 0;
  margin: 0;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>a,
nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>.wlauto a,
nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>.wlautoHover a {
  background: #cecece;
  border-left: 3px solid #6d8aa2;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.75);
  z-index: 2;
  color: #6d8aa2;
}

nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>a:before,
nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>.wlauto a:before,
nav#mainMenu>h2>ul>li>ul>li>ul li>ul li.active>.wlautoHover a:before {
  width: 3px;
  height: 100%;
  left: auto;
  right: -3px;
  background: #cecece;
}

nav#mainMenu>h2>ul>li>ul>li>ul li.active>a,
nav#mainMenu>h2>ul>li>ul>li>ul li.active>.wlauto a,
nav#mainMenu>h2>ul>li>ul>li>ul li.active>.wlautoHover a {
  border-left: 3px solid #6d8aa2;
  z-index: 2;
  color: #6d8aa2;
}

nav#mainMenu>h2>ul>li.active>a,
nav#mainMenu>h2>ul>li.active>.wlauto a,
nav#mainMenu>h2>ul>li.active>.wlautoHover a {
  background: #194459;
}

nav#mainMenu>h2>ul>li.net-empresa>a,
nav#mainMenu>h2>ul>li.net-empresa>.wlauto a,
nav#mainMenu>h2>ul>li.net-empresa>.wlautoHover a {
  padding: 17px 20px 17px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-net-empresa.png) 16px 18px no-repeat;
}

nav#mainMenu>h2>ul>li.solucoes-integradas>a,
nav#mainMenu>h2>ul>li.solucoes-integradas>.wlauto a,
nav#mainMenu>h2>ul>li.solucoes-integradas>.wlautoHover a {
  padding: 17px 20px 17px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-solucoes.png) 16px 18px no-repeat;
}

nav#mainMenu>h2>ul>li.acessibilidade>a,
nav#mainMenu>h2>ul>li.acessibilidade>.wlauto a,
nav#mainMenu>h2>ul>li.acessibilidade>.wlautoHover a {
  padding: 19px 20px 19px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-acessibilidade.png) 16px 12px no-repeat;
}

nav#mainMenu>h2>ul>li.sobre>a,
nav#mainMenu>h2>ul>li.sobre>.wlauto a,
nav#mainMenu>h2>ul>li.sobre>.wlautoHover a {
  padding: 19px 20px 17px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-sobre.png) 16px 18px no-repeat;
  display: none;
}

/* O Bradesco Corporate */
nav#mainMenu>h2>ul>li.ferramentas>a,
nav#mainMenu>h2>ul>li.ferramentas>.wlauto a,
nav#mainMenu>h2>ul>li.ferramentas>.wlautoHover a {
  padding: 19px 20px 19px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-ferramentas.png) 16px 12px no-repeat;
}

nav#mainMenu>h2>ul>li.canais-digitais>a,
nav#mainMenu>h2>ul>li.canais-digitais>.wlauto a,
nav#mainMenu>h2>ul>li.canais-digitais>.wlautoHover a {
  padding: 19px 20px 19px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-canais.png) 16px 12px no-repeat;
}

nav#mainMenu>h2>ul>li.atendimento>a,
nav#mainMenu>h2>ul>li.atendimento>.wlauto a,
nav#mainMenu>h2>ul>li.atendimento>.wlautoHover a {
  padding: 19px 20px 19px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/home/ico-atendimento.png) 16px 12px no-repeat;
}

nav#mainMenu>h2>ul>li.global-solutions>a,
nav#mainMenu>h2>ul>li.global-solutions>.wlauto a,
nav#mainMenu>h2>ul>li.global-solutions>.wlautoHover a {
  padding: 19px 20px 19px 59px;
  background: url(https://assets.bradesco/content/dam/portal-bradesco/assets/classic/home/images/mega-menu/bgs.svg) 16px 20px no-repeat;
}


nav#mainMenu>h2 ul li.on a {
  color: #6d8aa2;
}


/* Navegação Secundaria Mobile */
nav.navSegMobile {
  width: 100%;
  padding-left: 17px;
  display: none;
  border-bottom: 1px solid #CECECE;
}

nav.navSegMobile ul.navSeg {
  display: table;
  margin: 0 auto;
  float: none;
}

nav.navSegMobile ul.navSeg>li {
  height: 60px;
}

nav.navSegMobile ul.navSeg>li>a,
nav.navSegMobile ul.navSeg>li>.wlauto a,
nav.navSegMobile ul.navSeg>li>.wlautoHover a {
  padding: 5px 0 0 0;
}

nav.navSegMobile ul.navSeg>li.sub>a:before,
nav.navSegMobile ul.navSeg>li.sub>.wlauto a:before,
nav.navSegMobile ul.navSeg>li.sub>.wlautoHover a:before {
  top: 41px;
}

nav.navSegMobile ul.navSeg>li.sub>a:after,
nav.navSegMobile ul.navSeg>li.sub>.wlauto a:after,
nav.navSegMobile ul.navSeg>li.sub>.wlautoHover a:after {
  top: 40px;
}

nav.navSegMobile ul.navSeg>li div.navCnt {
  top: 58px;
}

/* End: Navegação Secundaria Mobile */
#MainMenuMobile {
  border-left: 1px solid #e1e1e1;
  box-sizing: border-box;
  top: 43px;
  z-index: 11;
}

#MainMenuMobile a.botaoAreaRestrita {
  display: block;
  width: 100%;
  font-size: 14px;
}

#MainMenuMobile>div.mm-panels {
  top: 54px;
}

/* Main Content */
section.mainContent {
  width: 1075px;
  min-height: 485px;
  margin-bottom: 50px;
  float: right;
  background: #fff;
  padding: 20px;
  overflow-x: hidden;
}


/* Regras Mobile - Desktop */
body.mobile #wrapper,
body.mobile .wrapper {
  padding-top: 95px;
}

body.mobile div#topBar div.holder {
  display: none;
}

body.mobile div#topBar div.holderMobile {
  display: block;
}

body.mobile header.mainHeader {
  display: none;
}

body.mobile nav#mainMenu {
  display: none;
}

body.mobile div.holderFixed {
  display: block;
  top: 0;
}

body.mobile nav.navSegMobile {
  display: block;
}

body.mobile div.breadcrumb {
  display: none;
}

body.mobile section.mainContent {
  width: 100%;
}

body.tablet #wrapper,
body.tablet .wrapper {
  padding-top: 130px;
}

body.tablet div#topBar {
  display: block;
}

body.tablet div#topBar div.holder {
  display: block;
}

body.tablet div#topBar div.holderMobile {
  display: none;
}

body.tablet div.holderFixed {
  top: 40px;
}

body.tablet footer.mainFooter {
  padding: 20px 20px 85px 20px;
}

/* End: Regras Mobile - Desktop */
.btn.big-blue {
  background: #1a5071;
  background: -moz-linear-gradient(top, #6e9ac4 0%, #1a5071 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #6e9ac4), color-stop(100%, #1a5071));
  background: -webkit-linear-gradient(top, #6e9ac4 0%, #1a5071 100%);
  background: -o-linear-gradient(top, #6e9ac4 0%, #1a5071 100%);
  background: -ms-linear-gradient(top, #6e9ac4 0%, #1a5071 100%);
  background: linear-gradient(to bottom, #6e9ac4 0%, #1a5071 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6e9ac4', endColorstr='#1a5071', GradientType=0);
  border: 1px solid #1b4156;
  border-radius: 1px;
}

/* Regras Mobile - Desktop */
body.mobile #wrapper {
  padding-top: 95px;
}

body.mobile div#topBar div.holder {
  display: none;
}

body.mobile div#topBar div.holderMobile {
  display: block;
}

body.mobile header.mainHeader {
  display: none;
}

body.mobile nav#mainMenu {
  display: none;
}

body.mobile div.holderFixed {
  display: block;
  top: 0;
}

body.mobile nav.navSegMobile {
  display: block;
}

body.mobile div.breadcrumb {
  display: none;
}

body.mobile section.mainContent {
  width: 100%;
}

body.tablet #wrapper {
  padding-top: 130px;
}

body.tablet div#topBar {
  display: block;
}

body.tablet div#topBar div.holder {
  display: block;
}

body.tablet div#topBar div.holderMobile {
  display: none;
}

body.tablet div.holderFixed {
  top: 40px;
}

body.tablet footer.mainFooter {
  padding: 20px 20px 85px 20px;
}

.lnk {
  background: url("https://assets.bradesco/content/dam/portal-bradesco/assets/corporate/img/seta-link.png") no-repeat right center !important;
  color: #265682 !important;
}

.lnk:hover {
  color: #2a899e !important;
}

div.comboSegmentos.active>h2 {
  color: #000;
}

div.comboSegmentos>h2 span::after {
  display: block;
  content: '\203A';
  font-size: 35px;
  font-weight: normal;
  top: -12px;
  right: 7px;
  transform: rotate(90deg);
  -ms-transform: rotate(10deg);
  position: absolute;
}

.menu__lateral {
  display: none;
}

.video-player {
  position: relative;
}

.video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.yt-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
  cursor: pointer;
}


.video-player {
  position: relative;
}

.yt-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent;
  cursor: pointer;
}

.integracao {
  padding: 40px;
}

.titulo-integracao {
  font-size: 36px;
  font-weight: 600;
}

.cards-integracao {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0 20px;
}

.cards-integracao__card {
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid #D9DCDD;
}

.cards-integracao__card-title {
  font-size: 20px;
  font-weight: 600;
}