
.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ESTILO DO CABEÇALHO */

/* RESET BÁSICO */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
header{
    width: 100%;
    padding: 20px 2%;
    box-shadow: 2px 2px 8px #00000043;
    position: sticky;
    top: 0;
    background-color: #061AAD;
    z-index: 99999;
}

/* FLEX */
.ajuste-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logotipo{
    width: 20%;
}

.logo-mob{
    display: none;
}

.logotipo img{
    width: 75%;
    max-width: 280px;
}

/* MENU DESKTOP */
.menu-desk{
    width: 80%;
    text-align: right;
}

.menu-desk nav a{
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.menu-desk nav a:hover{
    color: #FF7600;
}

/* BOTÃO CLIENTE */
.cliente-btn{
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 5px 20px;
    display: inline-flex;
    align-items: center;
}

.cliente-btn i{
    font-size: 24px;
    margin-right: 8px;
}

.cliente-btn:hover{
    background-color: #001ac4;
}

/* SETA */
.seta{
    font-size: 10px;
    margin-left: 5px;
    transition: .3s;
}

/* DROPDOWN */
.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #061AAD;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 2px 2px 7px #00000043;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
}

.dropdown-content a{
    display: block;
    padding: 12px;
    color: #fff;
}

.dropdown-content a:hover{
    background-color: #001ac4;
    color: #FF7600;
}

/* ANIMAÇÃO */
.dropdown:hover .dropdown-content{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .seta{
    transform: rotate(180deg);
}

/* MENU MOBILE */
.menu-mobile{
    width: 100%;
    height: 0;
    background: #000;
    position: fixed;
    top: 60px;
    left: 0;
    padding: 40px 2%;
    overflow: hidden;
    visibility: hidden;
    transition: .4s;
}

.menu-mobile nav a{
    display: block;
    text-align: center;
    color: #fff;
    padding: 16px;
    font-size: 24px;
}

.menu-mobile nav a:hover{
    transform: scale(1.05);
}

/* BOTÃO HAMBURGER */
/* BOTÃO HAMBURGER */
#btn-menu{
    display: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 100000; /* garante que fique acima de tudo */
}

/* LINHAS */
.linha{
    display: block;
    width: 100%;
    height: 4px;
    background: #fff; /* 🔥 BRANCO */
    margin: 6px 0;
    border-radius: 20px;
    transition: .3s;
}

/* ANIMAÇÃO X */
#btn-menu.ativo .linha:nth-child(1){
    transform: rotate(-45deg) translate(-5px,6px);
}

#btn-menu.ativo .linha:nth-child(2){
    opacity: 0;
}

#btn-menu.ativo .linha:nth-child(3){
    transform: rotate(45deg) translate(-5px,-6px);
}

/* RESPONSIVO */
@media (max-width: 980px){

    #btn-menu{
        display: block;
    }

    .menu-mobile{
        top: 70px; /* ajusta conforme altura do header */
    }
}

/* ABRIR MENU */
.menu-mobile.abrir{
    height: 100vh;
    visibility: visible;
}

/* MOBILE DROPDOWN */
.mobile-dropbtn{
    color: #fff;
    font-size: 24px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.mobile-submenu{
    max-height: 0;
    overflow: hidden;
    transition: .4s;
    background: #111;
}

.mobile-submenu a{
    font-size: 20px;
}

/* ATIVO */
.mobile-submenu.ativo{
    max-height: 300px;
}

/* RESPONSIVO */
@media (max-width: 980px){

    header{
        background: #061AAD;
    }

    .menu-desk{
        display: none;
    }

    .logo-desk{
        display: none;
    }

    .logo-mob{
        display: block;
    }

    #btn-menu{
        display: block;
        color: #fff;
    }

    .logotipo{
        width: 30%;
    }
}

section.acesso-rapido{
    padding: 80px 0;
    background-color: #e6e6e6;
}

.ajuste-acesso{
    justify-content: center;
    gap: 60px;
    display: flex;
    margin-top: 60px;
}

.ajuste-acesso a{
    text-decoration: none;
}

.ajuste-acesso button{
    width: 260px;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 200;
    padding: 10px 20px;
    border: 0;
    background-color: #fff;
    border-radius: 40px 0px 40px 0;
    font-size: 18px;
    color: #061AAD;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0px 8px 0px 0px #FF7600;
}

.ajuste-acesso button span{
    font-weight: 600;
    color: #061AAD;
    font-size: 20px;
}

.ajuste-acesso button:hover{
    transform: scale(.9);
}

.ajuste-acesso button i{
    font-size: 3rem;
    margin-right: 20px;
    color: #FF7600;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 30px 2%;
}

.interface {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

/* Linha superior */
.line-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-box img {
  width: 60%;
}

.footer-box p {
  font-size: 16px;
}

.footer-box button {
  background-color: #001ac4;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 16px;
  margin: 0 4px;
  cursor: pointer;
  transition: .3s;
}

.footer-box button:hover {
  transform: scale(.95);
}

.footer-box i {
  font-size: 22px;
  color: #fff;
}

/* Linha do meio */
.line-meedle {
  display: flex;
  justify-content: space-between;
  gap: 75px;
  margin-bottom: 30px;
  border-top: 2px solid #353535;
  padding-top: 20px;
}

.line-meedle-box {
  flex: 1;
  min-width: 250px;
}

.line-meedle-box h4 {
  color: #001ac4;
  margin-bottom: 12px;
}

.line-meedle-box a {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  text-decoration: none;
}

.line-meedle-box p {
  margin-bottom: 8px;
}

/* Linha inferior */
.line-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #353535;
  padding-top: 20px;
}

.line-down img {
  width: 60%;
}

.line-down p {
  margin-bottom: 16px;
  font-size: 14px;
}

/* Responsivo */
@media screen and (max-width: 980px) {
  .line-top,
  .line-meedle,
  .line-down {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .ajuste-acesso {
    flex-direction: column;   /* empilha os itens */
    align-items: center;      /* centraliza */
    gap: 40px;                /* espaçamento vertical */
    text-align: center;       /* centraliza texto */
  }

  .ajuste-acesso div {
    width: 100%;              /* cada bloco ocupa largura total */
  }

  .footer-box img,
  .line-down img {
    margin: 0 auto;
  }
}