/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/');
}

html {
    font-size: 100%;
    scroll-padding-top: 70px
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn:hover {
    background-color: var(--dourado-principal);
    color: white;
    border-color: var(--dourado-principal);
}

h1,
h2,
h3 {
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.1;
}

.cor-h2 {
    color: var(--azul-escuro);
}

p {
    font-weight: 400;
    font-size: 1rem;
}

span {
    font-weight: 500;
}

/* PALETA DE CORES */
:root {
    --azul-principal: #1E90C2;
    --azul-escuro: #0F5F85;

    /* Botões (CTA) Hover */
    --dourado-principal: #F4B400;
    --dourado-escuro: #A87400;
}



/* CABECALHO */
.hero-bg {
    background: url('../img/container/container-principal.png') no-repeat center center/cover;
    height: 600px;
    position: relative;
}

.cabecalho-topo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 40px;
    background-color: transparent;

    display: flex;
    gap: 200px;
    justify-content: space-around;
    align-items: center;
}

.slogan {
    color: white;
    font-size: 14px;
}

.rede-social-topo {
    display: flex;
    gap: 15px;
}

.rede-social-topo a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}


/* ========================================================= */
/* MENU MOBILE */
/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.cabecalho-box {
    width: 100%;
    position: fixed;
    top: 33px;
    z-index: 999;
}

.container-nav {
    max-width: 950px;
    margin: auto;
    padding: 4px 20px;
    background: #fff;
    border-radius: 12px;
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo img {
    height: 45px;
}

/* MENU */
.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list {
    display: none;
}

.nav-list.ativo {
    display: flex;
}

.nav-list li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

/* efeito premium */
.nav-list li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #007BFF;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* BOTÃO CTA */
.btn-cta {
    background: #007BFF;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #0056b3;
}

/* MENU MOBILE */
.menu-mobile {
    display: none;
    cursor: pointer;
}

.hamburguer {
    width: 25px;
    height: 3px;
    background: #000;
    position: relative;
    transition: 0.3s;
}

.hamburguer::before,
.hamburguer::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

.hamburguer::before {
    top: -8px;
}

.hamburguer::after {
    top: 8px;
}

/* ANIMAÇÃO */
.menu-mobile.ativo .hamburguer {
    background: transparent;
}

.menu-mobile.ativo .hamburguer::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-mobile.ativo .hamburguer::after {
    transform: rotate(-45deg);
    top: 0;
}

/* FIM MENU MOBILE */
/* ========================================================= */


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 0; */
}

.logo a img {
    width: 120px;
    height: 60px;
    /* height: 60px; */
}

.menu-ul {
    list-style: none;
    display: flex;
    /* gap: 20px; */
}

.nav-list {
    display: flex;
    justify-content: center;
    /* background-color: yellow; */
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--dourado-principal);
}

.nav-list li {
    list-style: none;
}

/* FIM CABECALHO */

/* ==================== */

/* SEÇÃO CONTAINER */
.container {
    /* background-color: red; */
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;

    display: flex;
    flex-direction: column;
    gap: 3px;

    position: relative;
    top: 70px;
    /* align-items: r; */
    /* text-align: ; */

    position: relative;
    z-index: 100;

}

.container h1 {
    font-size: 46px;
    margin-bottom: 20px;
    max-width: 600px;
    width: 100%;
    color: white;
    line-height: 50px;
}

.container h1 span {
    color: var(--dourado-principal);
}

.container p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    width: 100%;
    color: #fcfcfc;
    /* margin: 40px 0; */
}

.container .btn {
    font-size: 16px;
    background-color: var(--azul-escuro);
    color: white;
    border: none;
    padding: 10px 50px;
    align-self: flex-start;
}

.container .btn:hover {
    background-color: var(--dourado-escuro);
    color: white;
    border-color: var(--dourado-escuro);
}

/* FIM SEÇÃO CONTAINER */

/* SVG */
svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* FIM SVG */


/* CARD DOS SERVIÇOS */
.servico-total {
    background: url(../img/fundo-sessoes/fundo-sessoes.png) no-repeat center;
    background-size: cover;
    background-position: right;
    /* height: 100vh; */
}


.card-servico {
    position: relative;
    z-index: 100;
    margin-top: -100px;
}


.card-ser-box {
    max-width: 950px;
    margin: 0 auto;
    /* padding: 10px 30px; */
    display: flex;
    gap: 15px;
}

.card {
    background-color: #fcfcfc;
    flex: 1;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 144, 194, 0.15);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card i {
    font-size: 2rem;
    color: var(--dourado-principal);
}

.card h2 {
    font-size: 1.1rem;
}

.card p {
    font-size: 0.80rem;
}

.card-cor {
    background-color: var(--azul-escuro);
}

.card-cor h2,
.card-cor p {
    color: #fcfcfc;
}

.card:hover {
    background-color: var(--azul-principal);
    box-shadow: 0 15px 40px rgba(30, 144, 194, 0.25);
}

.card img {
    margin: 0 auto;
    width: 60px;
}


.card .btn {
    background-color: var(--azul-escuro);
    color: #fcfcfc;
    border: none;
    width: 190px;
    margin: 0 auto;
    font-size: 0.80rem;
}

.card .btn-cor {
    background-color: var(--dourado-principal);
}

.card .btn:hover {
    background-color: white;
    color: #0F5F85;
    font-weight: bold;
    /* border: 1px solid #000; */
}

/* FIM CARD DOS SERVIÇOS */

/* AGENDAR ESPECIALISTA */
.agendar-especialista {
    /* background-color: red; */
}

.agenda-especialista-container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.agenda-especialista-container h2 {
    margin: 10px 0;
}


.agendar-container {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

.agendar-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGEM */
.agendar-box img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* OVERLAY ESCONDIDO */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(to top, rgba(15, 79, 128, 0.95), rgba(47, 153, 205, 0.7));
    color: #fff;

    padding: 20px;
    text-align: center;

    transform: translateY(100%);
    transition: 0.4s ease;
}

/* TEXTO */
.overlay h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER */
.agendar-box:hover .overlay {
    transform: translateY(0);
}

/* FIN AGENDAR ESPECIALISTA */


/* FAIXA */
.faixa-1 {
    width: 100%;
    height: 45px;
    right: 5px;
    background-color: #333;
    color: white;
    overflow: hidden;
    position: relative;
    /* margin-top: 100px; */
    display: flex;
    align-items: center;

}

.faixa-1 {
    background-color: var(--azul-escuro);
    font-size: 15px;
    letter-spacing: 0.1rem;
}

.texto {
    display: flex;
    gap: 0;
    /* Remove qualquer espaçamento entre os textos */
    white-space: nowrap;
    animation: mover 25s linear infinite;
}

.texto::after {
    content: '';
    flex: 0 0 auto;
}

.texto span {
    padding-right: 20px;
    /* Pequeno espaçamento entre palavras */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animação contínua do texto */
@keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Movimenta exatamente metade da largura */
    }
}

/* FIM FAIXA */

/* SERVICO DESTAQUE */
.destaque-container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.destaque-imagem,
.destaque-texto {
    flex: 1 1 300px;
}

.destaque-imagem img {
    width: 80%;
}

.destaque-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destaque-texto p {
    color: #333;
}

.destaque-texto .btn {
    width: 140px;
    background-color: var(--azul-escuro);
    color: #fcfcfc;
    border: 1px solid #0F5F85;
    font-size: 0.80rem;
    text-align: center;
}

.destaque-texto .btn:hover {
    background-color: white;
    color: #0F5F85;
    font-weight: bold;
    border: 1px solid #0F5F85;
}

/* FIM SERVICO DESTAQUE */

/* AJUDA */
.ajuda {
    background: url('../img/ajuda/ajuda-1.png') no-repeat center center/cover;
    background-size: cover;
    /* padding: 60px 0; */
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajuda-container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    /* color: white; */
}

.ajuda-h2,
.ajuda-texto {
    flex: 1;
    padding: 0 20px;
}

.ajuda-h2 {
    border-right: 1px solid #fcfcfc64;
    text-align: right;
}

.ajuda-h2 h2 {
    font-size: 2.2rem;
    color: rgb(255, 255, 255);
}

.ajuda-texto {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.ajuda-texto p {
    color: white;
    text-align: start;
}

.ajuda-texto .btn {
    background-color: var(--azul-escuro);
    color: white;
    border: none;
    padding: 10px 50px;
    font-size: 16px;
    align-self: flex-start;
}

.ajuda-texto .btn:hover {
    background-color: var(--dourado-escuro);
    color: white;
    border-color: var(--dourado-escuro);
}

/* FIM AJUDA */

/* REPARO */
.reparo-container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
}

.reparo-img,
.reparo-texto {
    flex: 1 1 300px;
}

.reparo-img img {
    width: 450px;
    height: 300px;
    border-radius: 15px;
}

.reparo-box {
    position: relative;
    top: -60px;
    width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: var(--azul-escuro);
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.reparo-img-info {
    display: flex;
    text-align: center;
}

.info {
    border-right: 1px solid #fcfcfc64;
    padding-right: 20px;
}

.reparo-img-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.reparo-img-info span {
    color: #fcfcfc;
    font-size: 2rem;
    font-weight: 700;
}

.reparo-img-info p {
    color: #d1c8c8;
    font-size: 0.80rem;
}

.reparo-texto {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reparo-texto p {
    color: #333;
    text-align: start;
}

.reparo-lista {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.lista-1,
.lista-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reparo-lista li {
    list-style: none;
    font-size: 1rem;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.reparo-lista li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 18px;
    height: 18px;
    background-color: var(--azul-escuro);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 0.95rem;
}

/* FIM REPARO */

/* ========================= */
/* GALERIA FOTOS */
/* ========================= */

.galeria-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.galeria-container h2 {
    margin-bottom: 30px;
}

/* FLEX GRID */
.galeria-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* IMAGENS */
.galeria-grid img {
    width: calc(33.33% - 10px);
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    /* Ajuste o deslocamento para baixo (6px) e o desfoque (18px) */
    box-shadow: 0 6px 18px 0 rgba(10, 25, 41, 0.2);
}

.galeria-grid img:hover {
    transform: scale(1.05);
}

/* ========================= */
/* MODAL */
/* ========================= */

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9);

    justify-content: center;
    align-items: center;
}

/* IMAGEM DO MODAL */
.modal-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* BOTÃO FECHAR */
.fechar {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.fechar:hover {
    transform: scale(1.2);
}

/* SETAS */
.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.3s;
}

.seta:hover {
    transform: translateY(-50%) scale(1.1);
}

/* POSIÇÃO DAS SETAS */
.esquerda {
    left: 20px;
}

.direita {
    right: 20px;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

/* Tablet */
@media (max-width: 768px) {

    .galeria-grid img {
        width: calc(50% - 10px);
    }

    .seta {
        font-size: 30px;
    }

    .fechar {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .galeria-grid img {
        width: 100%;
    }
}

/* FIM GALERIA FOTOS */







/* ========================= */
/* PADRÃO DAS SEÇÕES */
/* ========================= */

.tabela-servicos,
.diferenciais,
.problemas,
.processo,
.cta-final {
    padding: 80px 20px;
}

.tabela-servicos h2,
.diferenciais h2,
.area h2,
.problemas h2,
.processo h2,
.cta-final h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* ========================= */
/* DIFERENCIAIS */
/* ========================= */

.diferenciais p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

/* CONTAINER */
.diferenciais ul {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* CARD */
.diferenciais li {
    max-width: 260px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 10px;

    list-style: none;
    padding: 30px 20px;

    background: linear-gradient(135deg, #ffffff, #f5f9fc);
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
    /* cursor: pointer; */
}

/* Ícone */
.diferenciais li i {
    font-size: 20px;
    color: white;

    background: linear-gradient(135deg, var(--azul-principal), var(--azul-escuro));
    padding: 12px;
    border-radius: 50%;

    margin-bottom: 10px;
}

/* TÍTULO */
.diferenciais li h3 {
    font-size: 18px;
    color: #222;
}

/* TEXTO */
.diferenciais li p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* HOVER */
.diferenciais li:hover {
    /* transform: translateY(-8px); */

    background: linear-gradient(135deg, var(--azul-principal), var(--azul-escuro));
    color: white;

    box-shadow: 0 20px 40px rgba(30, 144, 194, 0.3);
}

/* TEXTO NO HOVER */
.diferenciais li:hover h3,
.diferenciais li:hover p {
    color: white;
}

/* ÍCONE NO HOVER */
.diferenciais li:hover i {
    background: var(--dourado-principal);
}

/* DEPOIMENTO DO GOOGLE */
/* ========================= */
/* DEPOIMENTOS */
/* ========================= */


.depoimentos {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f5f9fc, #eef6fb);
}

.depoimentos-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.subtitulo {
    margin: 10px 0 40px;
    color: #666;
    font-size: 15px;
}

/* FLEX */
.depoimentos-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARD */
.depoimento-card {
    flex: 1 1 280px;
    max-width: 300px;

    background: white;
    padding: 20px;

    border-radius: 12px;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    gap: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* LINHA TOP PREMIUM */
.depoimento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, var(--azul-principal), var(--dourado-principal));
    border-radius: 12px 12px 0 0;
}

/* HOVER */
.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 144, 194, 0.25);
}

/* TOPO */
.depoimento-topo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FOTO */
.depoimento-topo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--azul-principal);
}

/* NOME */
.depoimento-topo h3 {
    font-size: 15px;
    color: #222;
}

/* ESTRELAS */
.depoimento-topo span {
    font-size: 13px;
    color: #F4B400;
}

/* TEXTO */
.depoimento-card p {
    font-size: 14px;
    color: #555;
    text-align: left;
    line-height: 1.5;
}

/* FIM DEPOIMENTO DO GOOGLE */



/* ========================= */
/* AREA */
/* ========================= */

.area {
    text-align: center;
    /* background: #0E082C; */
    background: url('../img/area-atendimento/fundo-atendimento-rio.png') no-repeat center/cover;
    /* height: 400px; */
    padding: 80px 0 0;
}

.area-container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    /* height: 300px; */
}

.area-texto,
.area {
    flex: 1 1 300px;
}

.area-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
    background: #3a0ca42d;
    padding: 40px 20px;
    border-radius: 10px;
}

.area-texto h2 {
    text-align: center;
    color: white;
}

.area-texto p {
    max-width: 700px;
    margin: 0 auto;
    color: wheat;
}

.area-texto .btn {
    width: 230px;
    background-color: var(--azul-principal);
    color: white;
    border: none;
    font-size: 0.80rem;
    margin: 0 auto;
    /* align-self: flex-end; */
}

.area-texto .btn:hover {
    background-color: var(--dourado-principal);
    color: white;
    /* font-weight: bold; */
    border-color: var(--dourado-principal);
}

.area-img {
    /* background-color: red; */
}

.area-img img {
    width: 130%;
    /* border-radius: 10px; */
}

/* FAQ */
/* ========================= */

.faq {
    background: url('../img/fundo-sessoes/fundo-sessoes.png') no-repeat center/cover;
    padding: 60px 20px;
}

.faq-container-geral {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* PERGUNTA */
.faq-pergunta {
    width: 100%;
    text-align: left;
    padding: 18px 20px;

    background: #fff;
    border: none;
    cursor: pointer;

    font-size: 16px;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.3s;
}

/* HOVER */
.faq-pergunta:hover {
    background: #f5f9fc;
}

/* RESPOSTA */
.faq-resposta {
    max-height: 0;
    overflow: hidden;

    background: #fafafa;
    transition: max-height 0.3s ease;
}

.faq-resposta p {
    padding: 15px 20px;
    color: #555;
    font-size: 14px;
}

/* ATIVO */
.faq-item.ativo .faq-resposta {
    max-height: 200px;
}

/* PERGUNTA ATIVA */
.faq-item.ativo .faq-pergunta {
    background: var(--azul-principal);
    color: white;
}

/* FIM FAQ */

/* RODAPÉ */
/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #100a29;
    padding: 60px 20px 20px;
    font-size: 14px;
    color: #333;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* COLUNAS */
.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col img {
    width: 120px;
}

/* TITULOS */
.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col p {
    color: #d1c8c8;
    margin-bottom: 10px;
    font-size: 13px;
}

/* LISTA */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
    color: #d1c8c8;
}

.footer-col ul li a:hover {
    color: var(--azul-principal);
}


/* PARTE DE BAIXO */
.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;

    border-top: 1px solid #ddd;

    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: #d1c8c8;
    font-size: 14px;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #d1c8c8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--azul-principal);
}

.desenvolvedor p a {
    text-decoration: none;
    color: #d1c8c8;
    transition: 0.3s;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter {
        justify-content: center;
    }
}

/* FIM RODAPÉ */


/* ========================= */
/* BOTÃO VOLTAR AO TOPO */
/* ========================= */

.btn-topo {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 50px;
    height: 50px;

    background: linear-gradient(135deg, var(--azul-principal), var(--azul-escuro));
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    cursor: pointer;
    text-decoration: none;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 999999;
}

/* Hover */
.btn-topo:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--dourado-principal);
}

/* Mostrar botão */
.btn-topo.ativo {
    opacity: 1;
    visibility: visible;
}

/* ========================= */
/* FIM BOTÃO VOLTAR AO TOPO */
/* ========================= */