* {
    margin: 0;
}

/*zap*/
.whats-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
    z-index: 9999; 
}

.whats-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whats-float img:hover {
    transform: scale(1.1);
}


/* 20px → 1.25rem | 13px → 0.8125rem | 5px → 0.3125rem */
.central {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 0.8125rem;
    padding: 0.3125rem;
}

/* HEADER GRANDE (o que já existe) */
#header-grande {
    transition: opacity .3s ease;
    padding-right: 100px !important;
}

/* HEADER PEQUENO (fixo no topo quando aparecer) */
#header-pequeno {
    position: fixed;
    top: -120px; /* escondido acima da tela */
    left: 0;
    width: 100%;
    border: none;
    background: rgb(0, 0, 0);
    z-index: 999999;
    padding: 0;

    transition: top .35s ease, opacity .3s ease;
    opacity: 0;              
    pointer-events: none;    
}
/* quando aparecer */
#header-pequeno.show {
    top: 0;        
    opacity: 1;     
    pointer-events: auto;
}

/* versão compacta */
.central-fixa img {
    margin-left: 40px !important;
}

/* 50px → 3.125rem */
.central img {
    margin-left: 3.125rem;
}

#container {
    /* REMOVIDO font-size: 17px, isso quebrava seu zoom */
    color: #ffffff;
    position: absolute;
    width: 100%;
    z-index: 100000;
}

/* 5.5 → mantido porque é um valor unitless (ok) */
header {
    position: relative;
    overflow: visible;
    border-top: 1px solid rgb(255, 208, 0);
    border-bottom: 1px solid rgb(255, 208, 0);
    line-height: 5.5;
    
}



.menu {
    list-style: none;
    position: relative;
}



/* 35px → 2.1875rem */
.central ul {
    display: flex;
    gap: 2.1875rem;
    list-style: none;
}

.central ul li a:hover {
    color: rgb(196, 163, 0);
   border-bottom: 2px solid rgb(196, 156, 0);
}

/* 11px → 0.6875rem | 20px → 1.25rem */
.central ul .ponto::before {
    content: "•";
    font-size: 0.6875rem;
    color: rgb(255, 208, 0);
    margin-right: 1.25rem;
}

/* 5px → 0.3125rem */
.central li {
    padding-left: 0.3125rem;
}

/* 10px → 0.625rem | 20px → 1.25rem */
#menu-language ul {
    display: flex;
    gap: 0.625rem;
    margin-right: 1.25rem;
    list-style: none;
    
}



/* 2px → 0.125rem | 8px → 0.5rem | 15px → 0.9375rem */
#menu-language a {
    background-color: transparent;
    padding: 0.5rem;
    font-size: 0.9375rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-right: 0px;
    border: 0.125rem solid rgb(255, 208, 0);
    border-radius: 5px;
}

#menu-language a:hover {
border: 0.125rem solid rgb(255, 208, 0);
box-shadow: 0 4px 15px rgb(255, 208, 0);
}

#menu-language button {
    background-color: transparent;
    border: transparent;
    color: white;
  
    

}


i {
    margin-right: 10px;
}




.central a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.ponto1{
    text-decoration: none;
    list-style: none;
}






/* HEADER TOP */
.top-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-header ul {
    display: flex;
    list-style: none;
}

/* 12px → 0.75rem */
.top-header h5 {
    font-weight: normal;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.top-header h5 a {
    text-decoration: none;
    color: #ffffff;
}

/* 12px → 0.75rem */
.size {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.size li {
    display: flex;
    align-items: center;
}

/* 20px → 1.25rem */
.acessibilidade {
    color: #ffffff;
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    gap: 1.25rem;
}

/* 16px → 1rem | 11px → 0.6875rem | 1px → 0.0625rem | 3px → 0.1875rem */
.size li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    border: 0.0625rem solid #000000;
    border-radius: 0.1875rem;
    padding: 0.2rem;
    font-size:0.7rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    transition: 0.2s;
}

.contrast{
    margin-right: 3rem;
}

.size li a:hover {
    background-color: rgb(255, 208, 0);
    color: #fff;
    border-color: #000;
}


.overflow {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.47);
    z-index: 1;
  }

/* INTERFACE / SOBREPOSIÇÃO */
.interface-video1 {
    position: relative;   /* ADICIONADO - NECESSÁRIO */
    width: 100%;
    height: 100vh;        /* Garante que o vídeo ocupe a tela */
    overflow: hidden;
}

.arrow-down {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 15px auto; /* centraliza e coloca acima do vídeo */
    border-left: 4px solid black;
    border-bottom: 4px solid black;
    transform: rotate(-45deg);
    cursor: pointer;
}





.interface-video {
    position: absolute;   /* ADICIONADO - NECESSÁRIO */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;           /* Estava -1 (não recomendado) */
}

/* Texto sobre o vídeo */
.texto-topo-video {
    position: absolute;
    top: 60%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 3; /* acima do vídeo e acima do overlay */
    width:50%;
    padding: 40px;
    border: 6px solid #d6b654; /* borda dourada */
    box-sizing: border-box;
}

.interface-video1 a {
     position: absolute;
    top: 90%;
    font-weight: lighter;
    left: 50%;
    font-size: 70px;
    z-index: 4; /* acima do vídeo e acima do overlay */
    color: #d6b654;
}

/* Subtítulo */
.subtitulo {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 18px;
}

/* Título */
.titulo-video {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
}

/* Faixa azul */
.titulo-video span {
    font-size: 35px;
    font-weight: lighter;
}



/* ACESSIBILIDADE */
body {
    transition: font-size .3s ease, background-color .3s ease, color .3s ease;
}

.data-size,
.contrast {
    cursor: pointer;
}

.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast a {
    color: #FFD700 !important;
}

/* 20px → 1.25rem | 1px → 0.0625rem */
.contrast {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    background: transparent;
    border: 0.0625rem solid #ccc;
}

.data-size:focus,
.contrast:focus {
    outline: 0.1875rem solid #005fcc;
}

.sr-only {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/*titulo começo site*/

.Title-inicio{
    padding: 60px;
    font-weight: 400;
    font-size: 35px;
    color: rgb(85, 82, 82);
    
}

.profissionais{
    display: flex;
    gap: 80px;
    padding: 60px;
    font-size: 55px;
    font-weight: 400;
    color: rgb(85, 82, 82);
}

.profissionais span{
    text-decoration: underline 1px;
    font-weight: bold;
    font-size: 55px;
}

.profissionais input{
    width: 550px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #d6c47c;
    font-size: 45px;
    outline: none;
    color: rgba(85, 82, 82, 0.636);
    
}




.input {
    position: relative;
}

.clear-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #0000008d;
    display: none; /* começa escondido */
}

.clear-btn i{
    font-size: 35px;
  
}

.empregados {
    padding: 60px;
    font-size: 40px;
    color: rgb(63, 61, 61);
}

.empregados a {
    text-decoration: none;
    color: rgb(85, 81, 81);
}

.empregados a:hover {
    text-decoration: underline !important;
}



.empregados-items {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-left: 60px;
    color:rgb(63, 61, 61) ;
    font-size: 21px;
}

.unidades p{
    margin-top: 90px;
    padding: 60px;
    font-size: 45px;
    font-weight: lighter;
    color: rgb(95, 95, 95);

}

.unidades h5 {
    padding: 40px;
    font-size: 40px;
    font-weight: 400;
    color: rgb(85, 82, 82);
    white-space: pre-line;
    margin-top: -40px;
    margin-left: 20px;
    
}

.combobox select{
    margin-left: 70px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 1.7rem;
    color: rgb(85, 82, 82);
}

.combobox option{
    color: #000000;
    font-size: 0.9rem;
}

.mapeamento{
    display: flex;
}

.box-map{
  display: flex;
  flex-direction: column;
}

.box-map .area-nav{
  position: absolute;
  margin-top: 30%;
  margin-left: 10%;
  color: #FFD700;
  font-size: 2.3rem;
}

.box-map .BA{
  position: absolute;
  margin-top: 450px;
  margin-left: 829px;

}

.box-map .BA i{
    margin-bottom: 30px;
  color: #ffb700;
  font-size: 30px;
}

.box-map .RJ{
  position: absolute;
  margin-top: 656px;
  margin-left: 765px;

}

.box-map .RJ i{
    margin-bottom: 30px;
  color: #ffb700;
  font-size: 30px;
}

.box-map  a{
  text-decoration: none;
  color: #000000;
}

.box-map img{
    margin-top: 40px;
    margin-left: 50px;
    width: 1000px;
}

/* Estilo base para a div #info (mover a caixa inteira) */
.info-box {
    margin-left: 0;        /* Esquerda/direita: 0 = centralizado; 10% = direita; -10% = esquerda */
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #d6c47c;
    font-family: Arial, sans-serif;
    width: 80%;            /* Largura para evitar overflow */
    max-width: 600px;      /* Limite máximo */
    margin-left: 25px;
}

.info-box.show {
    opacity: 1;
}


.info-box h2{
    margin-left: 23px;
    margin-top: 25px;
    padding-left: 0;       /* Esquerda/direita interna: 20px = move texto para direita */
    padding-top: 0;        /* Cima/baixo interna: 10px = move texto para baixo */
   
}

.info-box p {
    margin-left: 23px;
    margin-top: 20px;
    padding-left: 0;       /* Esquerda/direita interna: 20px = move texto para direita */
    padding-top: 0;        /* Cima/baixo interna: 10px = move texto para baixo */
    font-size: 25px;
}



/* footer*/

footer{
    background-color:rgb(54, 51, 51) ;
}
.footer-completo{
    display: flex;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: flex-start;
    
}
.inicio-footer img{
    margin-top: 45px;
    width: 260px;
    padding: 0;
    
}

.footer-items {
    display: flex; 
    gap: 100px; 
    flex-grow: 1; 
    margin-top: 45px; 
}

.footer-items h2{
    white-space: pre-line;
    color: white;
   
}

.footer-items h2 button{
    width: 250px;
    height: 40px;
    margin-top: 20px;
    background-color: #d6b654;
    color: white;
    font-size: 15px;
   
}


.footer-items ul {
    
    display: block; 
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-items ul li {
    margin-bottom: 10px; 
    
}

.footer-items a {
    text-decoration: none;
    color: white;
    font-weight: bold; 
    display: block; 
    
}

.footer-items a:hover{
    text-decoration: underline;
    color: white;
}

.linha-dourada {
    
    border: 0; 
    height: 1px; 
    background-color: #c9b078; 
    width: 93%; 
    margin: 20px auto; 
}


.title-sobre li{
    margin-left: 30px;
    list-style: none;
    
}

.title-sobre a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    
}




.footer-completo-2 {
    padding: 20px 40px; 
    color: white;
    font-family: Arial, sans-serif;
}


.footer-items-3 {
   
    display: flex; 
    gap: 40px; 
    align-items: flex-start;
    
}


.footer-items-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
   
}


.footer-items-3 ul li {
    
    margin-bottom: 10px; 
    
}


.footer-items-3 a {
    margin-left: 30px;
    text-decoration: none;
    color: white;  
    display: block;  
    white-space: nowrap; 
    font-size: 12px;
    white-space: pre-line;
    padding-bottom: 15px;
}


.footer-items-3 a:hover {
    text-decoration: underline;
    color: white;
    
}

.linha-dourada-2{
    border: 0; 
    height: 1px; 
    background-color: #c9b078; 
    width: 98%; 
    margin: 20px auto; 
}


.title-unidade li{
    margin-left: 0;
    list-style: none;
    
}

.title-unidade a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    
    
}

.footer-completo-3 { 
    color: white;
    font-family: Arial, sans-serif;
}


.footer-items-6 {
   
    display: flex; 
    gap: 40px; 
    align-items: flex-start;
    
}


.footer-items-6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
   
}


.footer-items-6 ul li {
    
    margin-bottom: 10px; 
    
}


.footer-items-6 a {
    margin-top: 20px;
    margin-left: 40px;
    text-decoration: none;
    color: gray;  
    display: block;  
    white-space: nowrap; 
    font-size: 12px;
    white-space: pre-line;
    padding-bottom: 15px;
}


.footer-items-6 a:hover {
    text-decoration: underline;
    color: white;
    
}

.unidades-central{
    display: flex;
    gap: 368px;
}


.unidades-central li{
    margin-left: 0;
    list-style: none;
    
}

.unidades-central a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    
}
/*footer final*/
:root {
    --dark-bg: #222222; 
    --gold: #A9975B; 
    --light-icon: #FFFFFF; 
    --icon-size: 40px; 
}

.social-icons-container{
    margin-left: 25px;
    display: flex;
}


.social-icons-list {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex;
    text-align: center;
    gap: 10px; 
}

.social-icons-list li i{
  margin: 0;
  font-size: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--icon-size);
    height: var(--icon-size);
    text-decoration: none;
    font-size: calc(var(--icon-size) * 0.4); 
    color: var(--light-icon); 
    box-sizing: border-box; 
    border: 1px solid var(--gold);
    background-color: transparent;
    transition: background-color 0.3s, border 0.3s;
}


.social-icon:hover {
    background-color: var(--gold);
    border: 1px solid var(--gold); 
    opacity: 0.9; 
}

.direitos a{
    text-decoration: none;
    color: gray;
    font-size: 12px;

}

.direitos li {
    list-style: none;
    margin-left: 100px;
    margin-right: 60px;
}


.submenu-footer{
    margin-left: 25px;
}
.submenu-footer a{
    font-size: 12px;
    color: gray;
    text-decoration: none;
}


.ponto1{
    color: yellow;
    padding-left: 13px;
    
    
}

.ponto1-sem-ponto {
    list-style: none;
    
}






.submenu-footer a:hover {
    text-decoration: underline;
    color: white;
    
}
































































/* ======================================
   MOBILE RESPONSIVE
====================================== */
@media (min-width: 1025px) {
    #mobile-header,
    #mobile-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

}

/* ======================================
   MOBILE VERSION
====================================== */
@media (max-width: 1024px) {
     .top-header{
        display: none;
    }

    /* Mostrar header mobile */
    #mobile-header {
        display: flex !important;
        background-color: transparent !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 18px;
        z-index: 9999;
    }

    /* Esconder headers desktop */
    #header-grande,
    #header-pequeno {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* CONTAINER MOBILE HEADER */
    .mobile-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-logo img {
        height: 30px;
    }

    /* ======================================
       HAMBURGUER
    ====================================== */
    .hamburger {
        margin-left: 150px;
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #ffbf00;
        border-radius: 3px;
        transition: 0.4s;
    }

    /* ANIMAÇÃO DO HAMBURGUER */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* ======================================
       MENU MOBILE
    ====================================== */
    #mobile-menu {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background: #000;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);

        transition: 0.5s ease;
        z-index: 99999;

        display: flex;
        flex-direction: column;
        justify-content: center; /* CENTRALIZA VERTICAL */
        align-items: center;     /* CENTRALIZA HORIZONTAL */
        padding-top: 80px;       /* espaço para o X */
    }

    #mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* ======================================
       BOTÃO X (ANIMADO)
    ====================================== */
    .mobile-close-btn {
        position: absolute;
        top: 25px;
        right: 25px;

        width: 40px;
        height: 40px;

        display: flex;
        justify-content: center;
        align-items: center;

        background: none;
        border: none;
        cursor: pointer;

        z-index: 100000000; /* SEMPRE ACIMA */
    }

    .mobile-close-btn span {
        position: absolute;
        width: 32px;
        height: 3px;

        background: white;
        border-radius: 3px;
        transition: 0.4s ease;
    }

    /* Forma de X */
    .mobile-close-btn span:nth-child(1) {
        transform: rotate(45deg);
    }
    .mobile-close-btn span:nth-child(2) {
        transform: rotate(-45deg);
    }

    /* Animação reversa (vira hambúrguer) */
    .mobile-close-btn.close-animation span:nth-child(1) {
        transform: rotate(0deg) translateY(-8px);
    }
    .mobile-close-btn.close-animation span:nth-child(2) {
        transform: rotate(0deg) translateY(8px);
    }

    /* ======================================
       NAV DO MENU
    ====================================== */
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        text-align: center; /* CENTRALIZA LINKS */
    }

    .mobile-nav ul li {
        margin: 18px 0;
    }

    .mobile-nav ul li a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
    }

    /* LÍNGUAS */
    .mobile-languages {
        margin-top: 25px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .mobile-languages .lang {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        padding: 6px 12px;
        border-radius: 5px;
    }

    /* SOCIAL */
    .mobile-social {
        display: none;
        margin-top: 35px;
        color: white;
        text-align: center;
    }

    .mobile-social .icons {
        margin-top: 10px;
        display: flex;
        gap: 15px;
        justify-content: center;
        font-size: 22px;
    }

    .mobile-social a {
        color: white;
    }
}

/* ======================================== */
/*               TABLET                     */
/* ======================================== */
@media screen and (max-width: 992px) {

    .texto-topo-video {
        width: 70%;
        top: 50%;          /* sobe um pouco */
        left: 50%;
        padding: 30px;
    }

    .subtitulo {
        font-size: 20px;
    }

    .titulo-video {
        font-size: 30px;
    }

    .titulo-video span {
        font-size: 28px;
    }

    .interface-video1 a {
        font-size: 55px;
        top: 88%;
    }

}



/* ======================================== */
/*               CELULAR                    */
/* ======================================== */
@media screen and (max-width: 600px) {

    .texto-topo-video {
        width: 85%;
        top: 48%;
        left: 50%;
        padding: 25px;
        border-width: 4px;
    }

    .subtitulo {
        font-size: 16px;
        text-align: center;
    }

    .titulo-video {
        font-size: 22px;
        text-align: left;
    }

    .titulo-video span {
        font-size: 20px;
        display: block; /* quebra a linha para não estourar */
        margin-top: 10px;
    }

    .interface-video1 a {
        font-size: 45px;
        top: 90%;
    }
}

@media screen and (max-width: 900px) {

    .Title-inicio {
        padding: 30px;
        font-size: 28px;
        text-align: left;
    }

    .profissionais {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        font-size: 32px;
    }

    .profissionais span {
        font-size: 32px;
    }

    .profissionais p {
        line-height: 1.2;
    }

    .profissionais i {
        font-size: 28px;
    }

    .profissionais input {
        width: 100%;
        font-size: 30px;
    }

    .empregados {
        padding: 30px;
        font-size: 30px;
    }

    .empregados-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-left: 30px;
        font-size: 20px;
    }

}

@media screen and (max-width: 900px) {

    /* Container vira coluna */
    .mapeamento {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    /* Título "Unidades" */
    .unidades p {
        margin-top: 40px;
        padding: 20px 0;
        font-size: 32px;
        text-align: left;
    }

    /* Texto explicativo */
    .unidades h5 {
        padding: 0;
        margin: 0 0 20px 0;
        font-size: 26px;
        white-space: normal;
        text-align: left;
        width: 100%;
    }

    /* Combobox */
    .combobox select {
        margin-left: 0;
        font-size: 1.3rem;
        width: 100%;
        padding: 10px;
        border-bottom: 2px solid #d6c47c;
    }

    /* Mapa */
    .box-map img {
        width: 100%;
        margin: 20px 0;
        margin-left: 0;
    }

    .box-map {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

       .box-map .BA{
  position: absolute;
  margin-top: 55% !important;
  margin-left: 70% !important;

}



.box-map .RJ{
  position: absolute;
  margin-top: 70% !important;
  margin-left: 60%;

}

    .box-map i {
        font-size: 26px !important;
    }

    /* Navegação */
    .area-nav {
        position: absolute;
        top: 10px;
        left: 10px;
        margin: 0;
        font-size: 1.5rem !important;
    }

    /* Info-box */
    .info-box {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-top: 20px;
        font-size: 18px;
        text-align: left;
        padding: 10px;
    }

    .info-box h2 {
        margin-left: 0;
        font-size: 22px;
    }

    .info-box p {
        margin-left: 0;
        font-size: 18px;
    }
}


/*footer*/

@media screen and (max-width: 900px) {

    footer {
        width: 100%;
        overflow: hidden;
    }

    /* PRIMEIRA ÁREA DO FOOTER */
    .footer-completo {
        flex-direction: column;
        align-items: left;
        gap: 30px;
        padding: 20px;
    }

    .inicio-footer img {
        width: 180px;
        margin: 0;
    }

    .footer-items {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
        margin-top: 0;
    }

    .footer-items ul {
        padding: 0;
    }

    .footer-items h2 {
        text-align: center;
        font-size: 20px;
        white-space: normal;
    }

    .footer-items h2 button {
        width: 200px;
        height: 40px;
        margin-top: 10px;
    }

    .divisor-area-footer hr {
        width: 90%;
    }

    /* "Sobre nós" título */
    .title-sobre {
        text-align: left;
        margin: 0;
        padding: 0;
    }

    .title-sobre li a {
        font-size: 18px;
    }

    /* SEGUNDA ÁREA DO FOOTER */
    .footer-completo-2 {
        padding: 10px;
        text-align: left;
    }

    .footer-items-3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 40px;
        justify-items: left;
        
    }

    .footer-items-3 ul li a {
        margin-left: 0;
        text-align: left;
        white-space: normal;
        font-size: 13px;
        padding: 5px 0;
    }

    /* Divisores dourados */
    .linha-dourada-2 {
        width: 90%;
    }

    /* Unidades */
    .unidades-central {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: left;
        
    }

    .unidades-central li a {
        font-size: 14px;
    }

    /* TERCEIRA ÁREA */
    .footer-completo-3 {
        text-align: left;
        padding: 10px;
    }

    .footer-items-6 {
        flex-direction: column;
        gap: 25px;
        align-items: left;
    }

    .footer-items-6 ul li a {
        margin-left: 0;
        font-size: 12px;
        text-align: left;
        white-space: normal;
        line-height: 18px;
    }

    /* ÍCONES E INFORMAÇÕES FINAIS */
    .social-icons-container {
        flex-direction: column;
        align-items: left;
        margin: 20px 0;
        gap: 20px;
    }

    .social-icons-list {
        justify-content: left;
    }

    .direitos {
        text-align: left;
        padding: 0;
    }

    .direitos li {
        margin: 5px 0;
        margin-left: 0;
    }

    /* Submenus finais */
    .submenu-footer {
        display: flex;
        margin-left: 0;
        margin-top: 10px;
    }

    .submenu-footer li {
        list-style: none;
        padding: 5px 0;
    }
}

/* Responsividade para Celulares e Tablets */
@media (max-width: 768px) {
    .texto-topo-video {
        width: 85%; /* Moldura ocupa 85% da largura da tela */
        left: 50%;
        top: 50%;
        padding: 20px;
        border-width: 3px; /* Borda mais fina no celular */
    }

    .titulo-video {
        font-size: 24px !important; /* Diminui o título principal */
    }

    .titulo-video span {
        font-size: 22px !important; /* Diminui a parte fina do título */
    }

    .subtitulo {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .interface-video1 a {
        font-size: 40px; /* Seta menor no mobile */
        top: 80%;
    }
}






