* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: monospace;
}

:root {
  --cor-linha: rgba(46, 46, 46, 0.4);
  --color-bradesco: linear-gradient(135deg, #e60023 0%, #800040 100%);
  --secundary-color: #0000008a;
}

.logo-header,
.menu-responsivo {
  display: none;
}

body {
  background-color: rgb(255, 255, 255);
  height: auto;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6%;
  background: linear-gradient(135deg, #ff0000 0%, #580016 100%);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 20px;
  z-index: 1000;
}

.cadastro i {
  display: flex;
  gap: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

.linha,
.linha2 {
  width: 1px;
  height: 2.5vh;
  background-color: var(--cor-linha);
}

.menu ul {
  display: flex;
  gap: 30px;
}

.menu li a {
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

.menu li a:hover {
  color: #000;
}

.acessibilidade {
  margin-left: auto;
  background-color: rgba(255, 0, 0, 0.137);
  border-radius: 4px;
  padding: 12px;
}

.acessibilidade i {
  display: flex;
  gap: 10px;
  align-items: center;
}

.acessibilidade a {
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
}

.acesso a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 900;
}

.bxs-chevron-right {
  padding: 2%;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 12px;
}

/* home page _+________________________________________________________________________________________________ */
.home-page {
  position: relative;
  margin-top: 56px;
  width: 100%;
  height: 90vh;
}

.banners {
  width: 100%;
  height: 100%;
}

.banners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.banners img.ativo {
  display: block;
  animation: fade 0.5s;
}

@keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

/* indicadores ____________________________________ */
.bolinhas {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.btn-bolinha {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.btn-bolinha:hover {
  transform: scale(1.1);
}

.btn-bolinha svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  display: none;
}

.btn-bolinha circle {
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  stroke-linecap: round;
}

.btn-bolinha.ativo {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-bolinha.ativo svg {
  display: block;
}

.btn-bolinha.ativo circle {
  animation: tempoCirculo 5s linear forwards;
}

@keyframes tempoCirculo {
  to {
    stroke-dashoffset: 0;
  }
}

.logo {
  position: absolute;
  left: 5%;
  top: 5%;
}

.logo img {
  width: 20%;
  height: auto;
}

.card-acesso {
  position: absolute;
  top: 38%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-acesso h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  background: var(--color-bradesco);
  -webkit-background-clip: text;
  color: transparent;
}

.campo-grupo {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.campo-grupo label {
  font-size: 0.8rem;
  color: var(--secundary-color);
  font-weight: bold;
  margin-bottom: 5px;
}

.campo-grupo input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  background-color: #f9f9f9;
}

.campo-grupo input:focus {
  border-color: #cc092f;
  background-color: white;
}

.linha-conta {
  display: flex;
  gap: 10px;
}

.conta {
  flex: 1;
}

.digito {
  width: 50px;
}

.digito input {
  text-align: center;
}

.lembrar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--secundary-color);
  cursor: pointer;
}

.lembrar input {
  cursor: pointer;
  accent-color: #cc092f;
}

.btn-acessar {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #cc092f, #990020);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-acessar:hover {
  background: #990020;
  border: 1px solid black;
  transition: 0.4s;
}

.opcoes {
  position: absolute;
  right: 5%;
  top: 5%;
  display: flex;
  gap: 10px;
}

.outros p,
.empresa {
  font-size: 1rem;
  color: white;
}

.outros h2,
.empresa h2 {
  color: white;
  font-size: 1.3rem;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-items: center;
}

.barra-pesquisa {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 5px 15px;
  max-width: 160px;
  transition: 0.3s;
}

.barra-pesquisa input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  width: 100%;
  font-size: 1rem;
  color: var(--secundary-color);
}

.barra-pesquisa button {
  background: none;
  border: none;
  cursor: pointer;
  color: #cc092f;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.barra-pesquisa input::placeholder {
  background: var(--color-bradesco);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 1.1rem;
}

.barra-pesquisa:focus-within {
  border-color: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

/* Boxes ___________________________________________________________ */
.pagina-cortada {
  width: 100%;
  height: 25vh;
  background-color: #ffffff;
  position: relative;
}

.container-box {
  position: absolute;
  left: 5%;
  top: -50px;
  width: 90%;
}

.boxes {
  display: flex;
  gap: 30px;
}

.card {
  background-color: rgb(255, 255, 255);
  width: 20%;
  height: 28vh;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.8s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  background: var(--color-bradesco);
}

.card img {
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 1.3rem;
  color: var(--secundary-color);
  line-height: 1.3;
}

.card:hover h2,
.card:hover i {
  color: white;
}

.seguro {
  margin-bottom: -40px;
  margin-top: 60px;
}

/* pagina 2 _________________________________________________________ */
.pagina2 {
  position: relative;
  height: 90vh;
  z-index: 2;
}

.img-app img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.img-app {
  margin-top: 90px;
}

.titulo-app {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 500px;
  text-align: left;
}

.titulo-app h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  max-width: 500px;
  background: var(--color-bradesco, #cc092f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  overflow-wrap: break-word;
  white-space: normal;
}

.titulo-app p {
  font-size: 1.6rem;
  max-width: 400px;
  color: var(--secundary-color);
}

.icones-app {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.icones-app img {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s;
}

.icones-app img:hover {
  transform: scale(1.05);
}

/* pagina 3 _________________________________________________________ */

.pagina3 {
  position: relative;
  z-index: 1;
}

.fundo-pagina3 img {
  width: 100%;
  height: 100vh;
}

.caixas-atalho {
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  top: 30%;
  width: 70%;
  max-width: 1000px;
}

.titulo-atalho {
  position: absolute;
  left: 20%;
  top: 20%;
}

.titulo-atalho h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  background: var(--color-bradesco, #cc092f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.atalhos ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-atalho {
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 200px;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s;
}

.card-atalho:hover {
  background: var(--color-bradesco);
}

.atalhos img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  transition: 0.3s;
}

.atalhos h1 {
  font-size: 1.2rem;
  color: var(--secundary-color);
  transition: 0.3s;
}

.card-atalho:hover h1 {
  color: white;
}

/* pagina 4 ________________________________________________________________________________ */
.pagina4 {
  background-color: #f7f7f7;
  padding: 80px 0;
  text-align: center;
}

.cabecalho-seguranca h2 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  max-width: 1850px;
  background: var(--color-bradesco, #cc092f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  overflow-wrap: break-word;
  white-space: normal;
}

.cabecalho-seguranca p {
  color: var(--secundary-color);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.cards-seguranca {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.item-seguranca {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: 0.8s;
}

.item-seguranca:hover {
  transform: translateY(-10px);
  border-bottom-color: #cc092f;
}

.item-seguranca i {
  font-size: 3.5rem;
  color: #cc092f;
  margin-bottom: 20px;
}

.item-seguranca h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2b2b2b;
}

.item-seguranca p {
  font-size: 0.95rem;
  color: var(--secundary-color);
  line-height: 1.5;
}

/* header ___________________________________________________________________________ */
footer {
  width: 100%;
  background: white;
  padding: 40px 0;
  margin-bottom: 70px;
}

.container-footer {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.lista-telefones {
  display: flex;
  gap: 30px;
}

.lista-telefones p {
  font-size: 0.9rem;
  font-weight: bold;
  background: var(--color-bradesco, #cc092f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}

.lista-telefones h1 {
  font-size: 1.3rem;
  color: var(--secundary-color);
}

.lista-telefones h1:hover {
  color: #cc092f;
}

.social-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.whats-label {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--secundary-color);
  font-weight: 600;
}

.lista-social {
  display: flex;
  gap: 15px;
}

.lista-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #000;
  font-size: 1.5rem;
  transition: 0.3s;
}

.lista-social li a:hover {
  background-color: #cc092f;
  color: white;
  border-color: #ffffff;
}

.logo-footer img {
  width: 180px;
  height: auto;
}

.linha-separadora {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.texto-legal p {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 5px;
}

.aviso-dev {
  background: #1a1a1a;
  color: white;
  padding: 15px 25px;
  border-radius: 6px;
  border-left: 4px solid #cc092f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aviso-conteudo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.aviso-conteudo i {
  font-size: 1.8rem;
  color: #cc092f;
}

.aviso-dev p {
  margin: 0;
  line-height: 1.3;
  font-size: 0.9rem;
}

.aviso-dev strong {
  font-weight: 700;
  color: #fff;
}

.aviso-detalhe {
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 3px;
}

.links-institucionais {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 10px;
}

.links-institucionais li {
  display: flex;
  align-items: center;
}

.links-institucionais a {
  font-size: 0.9rem;
  color: var(--secundary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0 25px;
}

.links-institucionais a:hover {
  color: #cc092f;
}

.links-institucionais li::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.5vh;
  background-color: #ccc;
  margin: 0;
}

.links-institucionais li:first-child a {
  padding-left: 0;
}

.links-institucionais li:last-child::after {
  display: none;
}

/* aviso fixo _____________________________________________________________________ */
.aviso-legal-fixo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 15, 15, 0.95);
  border-top: 3px solid #cc092f;
  color: #fff;
  padding: 15px 0;
  z-index: 9999;
  font-family: Arial, sans-serif;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.conteudo-aviso {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.conteudo-aviso p {
  line-height: 1.5;
  font-size: 0.9rem;
}

.destaque-nome {
  color: #cc092f;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aviso-pequeno {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 5px !important;
}

@media (max-width: 900px) {
  .cadastro,
  .linha,
  .menu,
  .linha2,
  .acesso,
  .acessibilidade,
  .logo {
    display: none;
  }

  .logo-header {
    display: block;
  }

  .logo-header img {
    height: 30px;
    width: auto;
    display: block;
  }

  .menu-responsivo {
    display: block;
    position: absolute;
    right: 8%;
  }

  .menu-responsivo i {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
  }

  /* home page _+________________________________________________________________________________________________ */
  .home-page {
    margin-top: 41px;
    height: 55vh;
  }

  .banners {
    height: 70%;
  }

  .banners img {
    height: 80%;
  }

  /* indicadores ____________________________________ */
  .bolinhas {
    bottom: 250px;
  }

  .btn-bolinha {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.534);
  }

  .card-acesso {
    top: 86%;
    left: 2%;
    width: 230px;
    height: 320px;
  }

  .card-acesso h3 {
    font-size: 1.2rem;
  }

  .campo-grupo {
    margin-bottom: 10px;
    margin-left: -15px;
  }

  .campo-grupo label {
    font-size: 0.8rem;
  }

  .campo-grupo input {
    padding: 10px;
    font-size: 0.8rem;
  }

  .linha-conta {
    gap: 20px;
  }

  .barra-pesquisa {
    border-radius: 9px;
    padding: 5px 10px;
    max-width: 120px;
  }

  .barra-pesquisa input::placeholder {
    font-size: 1rem;
  }

  /* Boxes ___________________________________________________________ */
  .pagina-cortada {
    height: auto;
    margin-top: 150px;
    padding-bottom: 40px;
  }

  .container-box {
    position: relative;
    top: 0px;
    left: 0;
    width: 90%;
    margin: 0 auto;
  }

  .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .card {
    width: calc(50% - 15px);
    height: 200px;
  }

  .card img {
    width: 60%;
    margin-bottom: 10px;
  }

  .card h2 {
    font-size: 1rem;
  }

  .seguro {
    margin-top: 0;
    margin-bottom: 0;
  }

  .pagina2 {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
  }

  .img-app {
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .img-app img {
    width: 100%;
    max-width: 400px;
  }

  .titulo-app {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .titulo-app h1 {
    font-size: 2.2rem;
    margin: 0 auto 15px auto;
    text-align: center;
  }

  .titulo-app p {
    font-size: 1.2rem;
    margin: 0 auto;
    text-align: center;
  }

  .icones-app {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
  }

  .icones-app img {
    height: 48px;
    margin: 0 auto;
  }

  /* pagina 3 _________________________________________________________ */

  .fundo-pagina3 img {
    width: 100%;
    height: 145vh;
  }

  .titulo-atalho {
    position: absolute;
    left: 2%;
    top: 10%;
  }

  .titulo-atalho h1 {
    font-size: 2.2rem;
    max-width: 290px;
    white-space: normal;
    text-align: center;
  }

  .atalhos ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .caixas-atalho {
    top: 26%;
  }

  .card-atalho {
    width: 100%;
    height: 135px;
  }

  .atalhos img {
    width: 40px;
  }

  .atalhos h1 {
    font-size: 1rem;
  }

  .cabecalho-seguranca h2 {
    max-width: 400px;
  }

  .cabecalho-seguranca p {
    font-size: 1rem;
    max-width: 390px;
  }

  .cards-seguranca {
    max-width: 300px;
  }

  footer {
    padding: 30px 0;
    margin-bottom: 150px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .lista-telefones {
    flex-direction: column;
    gap: 20px;
  }

  .social-area {
    order: 2;
  }

  .logo-footer {
    order: 3;
    margin-top: 10px;
  }

  .legal-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .aviso-dev {
    order: 1;
  }

  .texto-legal {
    order: 2;
  }

  .aviso-conteudo {
    flex-direction: column;
    gap: 10px;
  }

  .links-institucionais {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin-top: 20px;
  }

  .links-institucionais li {
    border: none;
    padding: 0;
  }

  .links-institucionais a {
    font-size: 0.9rem;
  }

  .links-institucionais li::after,
  .links-institucionais li::before,
  .lista-telefones li::after,
  .lista-telefones li::before {
    content: none !important;
    display: none !important;
  }
}
