

/* ===== SEÇÃO ATENDIMENTO ===== */

.atendimento {
    background: linear-gradient(135deg, #f4f4f4, #dde0e4);
    color: white;
    padding: 80px 20px;
    text-align: center;
	margin-top: 170px;
}

.container-atendimento {
    max-width: 1000px;
    margin: auto;
}

.atendimento h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.descricao {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    color: rgb(33, 33, 33);
}

/* BOTÕES */

.botoes-atendimento {
    margin-bottom: 40px;
}

.btn-principal {
    background: rgb(63, 178, 37);
    color: #fdfdfd;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-principal:hover {
    background: #121212;
    color: #fdfdfd;
}

.btn-secundario {
    border: 2px solid rgb(7, 210, 255);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    color: rgb(22, 22, 22);
    font-weight: bold;
    transition: 0.3s;
}

.btn-secundario:hover {
    background: rgb(0, 15, 154);
    color: #ffffff;
}

/* CONTATO */

/* RESPONSIVO */

@media (max-width: 768px) {
    
    .atendimento h2 {
        font-size: 28px;
    }

    .descricao {
        font-size: 16px;
    }

    .botoes-atendimento a {
        display: block;
        margin: 10px auto;
        width: 220px;
    }

}
/* ===== SEÇÃO ATENDIMENTO ===== *


/* ===== HEADER ===== */
/* HEADER */

.cabecalho-principal{
    width:100%;
    background:#0d6efd;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
}

.cabecalho-container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-principal img{
    width:130px;
}

/* BOTÃO HAMBURGUER */

.menu-toggle-btn{
    width:42px;
    height:42px;
    background:#16d1d1;
    border:none;
    border-radius:8px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
}

.menu-toggle-btn span{
    width:22px;
    height:3px;
    background:#fff;
    display:block;
}

/* MENU MOBILE */

.menu-mobile-area{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#1e5cb8;
    max-height:0;
    overflow:hidden;
    transition:0.3s;
}

.menu-mobile-area.ativo{
    max-height:300px;
}

.menu-mobile-lista{
    list-style:none;
    padding:20px;
}

.menu-mobile-lista li{
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.menu-mobile-lista li a{
    display:block;
    padding:14px 0;
    color:white;
    text-decoration:none;
    font-weight:600;
}

/* DESKTOP */

@media(min-width:769px){

.menu-toggle-btn{
display:none;
}

.menu-mobile-area{
position:static;
max-height:none;
background:transparent;
}

.menu-mobile-lista{
display:flex;
gap:30px;
padding:0;
}

.menu-mobile-lista li{
border:none;
}

}


/* ===== FOOTER ===== */

.rodape-site {
    position: relative;
    background: linear-gradient(135deg, #0a4bbf, #0d6efd);
    color: #ffffff;
    overflow: hidden;
}

.rodape-area {
    padding: 70px 20px 30px;
}

.rodape-centro {
    max-width: 1200px;
    margin: 0 auto;
}

.rodape-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.rodape-bloco {
    width: 100%;
}

.logo-rodape-link {
    display: inline-block;
    margin-bottom: 18px;
}

.logo-rodape-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

.frase-rodape {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.92);
}

.redes-rodape {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.icone-rede {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.icone-rede:hover {
    background: #ffffff;
    color: #0d6efd;
    transform: translateY(-3px);
}

.titulo-rodape {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.lista-contatos-rodape {
    display: flex;
    flex-direction: column;
}

.item-contato-rodape {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    line-height: 1.6;
    transition: 0.3s ease;
}

.item-contato-rodape:hover {
    color: #ffffff;
    padding-left: 6px;
}

.item-contato-rodape i {
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.anatel-box {
    text-align: center;
    margin: 40px 0 20px;
}

.anatel-img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.linha-rodape {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 25px 0 20px;
}

.base-rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.base-rodape p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.6;
}

.base-rodape a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.base-rodape a:hover {
    text-decoration: underline;
}




/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {
    .rodape-grid {
        grid-template-columns: 1fr;
    }

    .marca-rodape,
    .contatos-rodape {
        text-align: center;
    }

    .redes-rodape {
        justify-content: center;
    }

    .item-contato-rodape {
        justify-content: center;
        text-align: left;
    }

    .base-rodape {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .rodape-area {
        padding: 55px 16px 25px;
    }

    .logo-rodape-img {
        max-width: 180px;
    }

    .titulo-rodape {
        font-size: 21px;
    }

    .frase-rodape {
        font-size: 15px;
    }

    .item-contato-rodape {
        font-size: 14px;
    }

    
}