* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* CAIXA DE MENSAGEM */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.toast.show {
    opacity: 1;
    pointer-events: auto;
}

.toast.hidden {
    display: none;
}

/* FIM CAIXA DE MENSAGEM */

body {
    background-color: white;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%
}

header .btn-contato button,
.banner-site button,
.pam button {
    width: 140px;
    height: 50px;
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

header .btn-contato button:hover,
.banner-site button:hover,
.pam button:hover {
    background-color: #fff;
    color: #000;
}

/* Estilo Header Dinâmico */

header.scrolled {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 0 10px #00000071;
}

header.scrolled .menu-desktop nav ul li a {
    color: #000;
}

header.scrolled .btn-contato button {
    border: 1px solid #000;
    color: #000;
}

header.scrolled .btn-contato button:hover {
    background-color: #000;
    color: #fff;
}

/* Estilo Cabeçalho header*/

header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 1000;
    background-color: none;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 80px;
}

header .menu-desktop nav ul {
    list-style-type: none;
}

header .menu-desktop nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header .menu-desktop nav ul li a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    font-size: 20px;
}

header .menu-desktop nav ul li a:hover {
    transform: scale(1.09);
}

/* ESTILO BOTÃO MENU MOBILE */

header .btn-menu-mobile {
    display: none;
    position: relative;
    z-index: 999999999999999999999999999999999999999;
}

header .btn-menu-mobile div {
    background-color: #fff;
    height: 3px;
    margin: 10px 0;
    transition: .2s;
}

header .btn-menu-mobile .line-menumobi1 {
    width: 30px;
}

header .btn-menu-mobile .line-menumobi2 {
    width: 20px;
}

header.scrolled .btn-menu-mobile div {
    background-color: #000;
}

header .btn-menu-mobile .line-menumobi1.ativo1 {
    transform: rotate(45deg) translate(30%);
    background-color: #fff;
}

header .btn-menu-mobile .line-menumobi2.ativo2 {
    transform: rotate(-45deg) translate(30%);
    width: 30px;
    background-color: #fff;
}

/* ESTILO MENU MOBILE */

header .menu-mobile {
    width: 0;
    height: 0;
    background-color: #000000a1;
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
    transition: .5s;
}

header .menu-mobile nav {
    width: 100%;
}

header .menu-mobile nav ul {
    list-style-type: none;
}

header .menu-mobile nav a {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    display: block;
    transition: .5s;
}

header .menu-mobile nav a:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
}

header .menu-mobile.abrir {
    width: 100%;
    height: 100vh;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ESTILO BANNER DO SITE */

section.banner-site {
    height: 100vh;
    background-image: url(../images/IMG_1894-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.banner-site .interface {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-site .txt-banner h1 {
    font-size: 4em;
    line-height: 70px;
    font-weight: 100;
}

.banner-site .txt-banner h1 span {
    display: block;
    font-weight: 600;
}

.banner-site .txt-banner p {
    font-size: 1.5em;
    margin: 20px 0;
}

.banner-site .txt-banner p span {
    display: block;
}

/* Estilo básico do botão */
/* modal.css */
  .modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    position: relative;
    background-color: #fff;
    padding: 0;
    max-width: 800px;
    width: 90%;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


/* ESTILO TEMA MISSÕES */

/* === AJUSTE FINAL DE CENTRALIZAÇÃO === */

/* === SEÇÃO TEMA E DIVISA === */
.tema-missões {
  background-color: #fff;
  padding: 60px 0 0 0;
}

/* Remove qualquer espaçamento entre as imagens */
.tema-missões .interface {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin: 0;
  padding: 0;
}

/* Ajuste das divs de imagem */
.tema-missões-img,
.divisa-missões {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* As imagens ocupam o centro, sem margem */
.tema-missões-img img,
.divisa-missões img {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  height: auto;
}

/* Centraliza o título e remove espaços indesejados */
.tema-missoes-titulo {
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

.tema-missoes-titulo h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.container-missoes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 0;
    margin-top: 0;
    background-color: white;
    justify-content: center;
    align-items: stretch;
}


/* estado inicial (antes de aparecer) */
.dados-missoes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    height: 200px;
    /* 🔹 altura fixa igual para todos */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px);
}

/* animação de entrada */
.dados-missoes.reveal {
    animation: fadeUp 0.8s ease forwards;
}

.dados-missoes.reveal:nth-child(1) {
    animation-delay: 0.2s;
}

.dados-missoes.reveal:nth-child(2) {
    animation-delay: 0.4s;
}

.dados-missoes.reveal:nth-child(3) {
    animation-delay: 0.6s;
}

.dados-missoes.reveal:nth-child(4) {
    animation-delay: 0.8s;
}

.dados-missoes.reveal:nth-child(5) {
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* efeito ao passar o mouse */
.dados-missoes:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.img-itens {
    font-size: 42px;
    color: #0056b3;
    margin-bottom: 10px;
}

.txt-itens h3 {
    font-size: 16px;
    color: #333;
    line-height: 1.3;
}

.txt-itens span {
    font-size: 28px;
    color: #007bff;
    font-weight: bold;
}

/*BARRA OFERTAS*/

section.barra {
    font-family: Arial, sans-serif;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20vh;
}

.goal-container {
    width: 80%;
    max-width: 600px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.goal-bar {
    height: 35px;
    width: 0%;
    background: linear-gradient(90deg, #2196f3, #64b5f6);
    transition: width 0.4s ease-in-out, background 0.5s ease;
}

.goal-info {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.meta-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 5px;
    color: #555;
    width: 80%;
    max-width: 600px;
}

.celebration {
    color: #2e7d32;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    display: none;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ESTILO COORDENADOR */

section.coordenador {
    padding: 80px 0;
    background-color: #fff;
}

.coordenador .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coordenador .coordenador-txt h2 {
    font-size: 3em;
    line-height: 50px;
    font-weight: 200;
    margin-bottom: 40px;
}

.coordenador .coordenador-txt h2 span {
    display: block;
    font-weight: 600;
}

.coordenador .coordenador-txt p {
    text-align: justify;

}

/* ESTILO CONTATOS */

section.contato {
    background-color: #fff;
    padding: 100px 0;
}

.txt-contato,
.icons-contato {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3 {
    font-size: 2.5em;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 70px;
}

.contato .txt-contato h3 span {
    display: block;
    font-weight: 800;
}

.contato .icons-contato a {
    text-decoration: none;
}

.contato .icons-contato button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: transparent;
    border: 2px solid #000;
    cursor: pointer;
    transition: .5s;
}

.contato .icons-contato button i {
    font-size: 22px;
}

.contato .icons-contato button:hover {
    background-color: #000;
}

.contato .icons-contato button:hover i,
.contato .icons-contato button:hover p {
    color: #fff;
}

/* ESTILO PAM */

section.pam {
    height: 500px;

    background-image: url(../images/pam.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
}

.pam>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000009d;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pam>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.pam h3 {
    font-size: 3em;
    line-height: 50px;
    font-weight: 200;
}

.pam h3 span {
    display: block;
    font-weight: 600;
}

.pam p {
    font-size: 20px;
    margin: 20px 0;
}

.pam button {
    width: 220px;
    height: 60px;
}

/* Como Contribuir */

section.como-contribuir {
    padding: 80px 0;
}

.txt-contribua,
.instrucoes {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.como-contribuir .txt-contribua {
    position: sticky;
    top: 50%;
    padding-bottom: 30px;
}

.como-contribuir .txt-contribua h3 {
    font-size: 3em;
    line-height: 50px;
    font-weight: 200;
}

.como-contribuir .txt-contribua h3 span {
    display: block;
    font-weight: 700;
}

.instrucoes .instru-box {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 40px;
    border: 2px solid #000;
    padding: 20px;
}

.instrucoes .instru-box img {
    max-width: 120px;
}

.instrucoes .instru-box h4 {
    font-size: 1.5em;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instrucoes .instru-box p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 100;
}

/* ESTILO FOOTER */

footer {
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

footer .top-footer button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    margin: 0 10px;
    transition: .5s;
}

footer .top-footer button:hover {
    background-color: #fff;
    color: #000;
}

footer .middle-footer {
    margin: 20px 0;
}

footer .middle-footer a {
    color: #fff;
    margin: 0 15px;
}

footer .bottom-footer {
    border-top: 2px solid #fff;
}

footer .bottom-footer p {
    color: #fff;
    margin-top: 10px;
}

/* ESTILO PAG DOWNLOADS */

section.downloads {
    height: 100vh;
    background-image: url(../images/IMG_1791.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.downloads .interface {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.downloads>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000009d;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.downloads>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.downloads .txt-downloads h1 {
    font-size: 4em;
    line-height: 70px;
    font-weight: 100;
}

.downloads .txt-downloads h1 span {
    display: block;
    font-weight: 600;
}

.downloads .txt-downlads p {
    font-size: 1.5em;
    margin: 20px 0;
}

section.musica,
section.inspiracao {
    padding: 80px 0;
    background-color: rgb(255, 255, 255);
}

.musica,
.inspiracao .interface {
    display: flex;
    align-items: center;
    justify-content: center;
}

.musica .txt-autor h2,
.txt-inspiracao h2 {
    font-size: 2em;
    line-height: 50px;
    font-weight: 200;
    margin-bottom: 2px;
}

.musica .txt-autor p {
    font-weight: 200;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.musica-lista,
section.palavra-cba,
section.arte-campanha {
    padding: 40px 0;
    background-color: #fff;
}

.musica-lista .interface,
.palavra-cba .interface,
.arte-campanha .interface {
    display: flex;
    justify-content: center;
    align-items: center;
}

.musica-list,
.video-cba,
.arte-banner-campanha {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 20vw, 220px), 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 20px 0 20px;
    max-width: 1200px;
    box-sizing: border-box;
}

.musica-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.musica-box img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.musica-box button {
    padding: 10px 15px;
    background-color: transparent;
    color: #000000;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.musica-box button:hover {
    background-color: #000000;
    color: #fff;
    transform: scale(1.05);
}

/* ESTILO PAGINA MISSIONÁRIOS */

section.missionarios {
    height: 100vh;
    background-image: url(../images/IMG_2389.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0 5%;
}

.missionarios .interface {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.missionarios>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000009d;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.missionarios>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.missionarios .txt-missionarios h1 {
    font-size: 4em;
    line-height: 70px;
    font-weight: 100;
}

.missionarios .txt-missionarios h1 span {
    font-weight: 600;
}

.missionarios .txt-missionarios p {
    font-size: 1.5em;
    margin: 20px 0;
}

section.miss-sede-txt {
    padding: 80px 0;
}

.miss-sede-txt .interface {
    display: flex;
    justify-content: center;
    text-align: center;
}

.miss-sede-txt .txt-sede h1 {
    font-size: 2em;
    line-height: 50px;
    font-weight: 200;
    margin-bottom: 2px;
}

section.missionarios-sede {
    padding: 10px 0;
}

.missionarios-sede .interface {
    display: flex;
    justify-content: center;
    align-items: center;
}

.txt-missionarios-sede {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 20vw, 220px), 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 20px 0 20px;
    max-width: 1200px;
}

.box-miss {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.box-miss h1 {
    font-size: 16px;
    font-weight: 600;
}

.box-miss img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

section.missionarios-campo {
    padding: 30px 0;
    margin-bottom: 40px;
}

.missionarios-campo .interface {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabela-missionarios-campo h2 {
    align-items: center;
    text-align: center;
    font-size: 2em;
    font-weight: 200;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 12px 16px;
    border: none;
    text-align: center;
}

th {
    background-color: #000000;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

tbody tr:hover {
    background-color: #d6f0ff;
}

/* ESTILO PROJETOS */

section.projetos-banner {
    height: 100vh;
    background-image: url(../images/crianças\ flutuante.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.projetos-banner .interface {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projetos-banner>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000081;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.projetos-banner>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.projetos-banner .txt-banner h1 {
    font-size: 4em;
    line-height: 70px;
    font-weight: 100;
}

.projetos-banner .txt-banner h1 span {
    font-weight: 600;
}

.projetos-banner .txt-banner p {
    font-size: 1.5em;
    margin: 20px 0;
}

section.botes-missionarios {
    padding: 80px 0;
    background-color: #ffffff;
}

.botes-missionarios .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.botes-missionarios h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 40px;
}

.botes-missionarios p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

section.acampamento {
    padding: 80px 0;
    background-color: #d6d6d6;
}

.acampamento .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.acampamento h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 35px;
    text-align: center;
}

.acampamento p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

section.missionarios-conveniados {
    padding: 80px 0;
    background-color: #ffffff;
}

.missionarios-conveniados .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.missionarios-conveniados h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 40px;
}

.missionarios-conveniados p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

section.sebaen {
    padding: 80px 0;
    background-color: #d6d6d6;
}

.sebaen .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sebaen h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 40px;
}

.sebaen p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

section.pepe {
    padding: 80px 0;
    background-color: #ffffff;
}

.pepe .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pepe h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.pepe p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    align-items: center;
    justify-content: center;
}

section.revit-igreja {
    padding: 80px 0;
    background-color: #d6d6d6;
}

.revit-igreja .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.revit-igreja h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 40px;
}

.revit-igreja p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

/* ESTILO FORMS PAM */

section.banner-facaparte {
    height: 100vh;
    background-image: url(../images/bannerjt.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.banner-facaparte .interface {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-facaparte>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000081;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-facaparte>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.banner-facaparte .txt-banner h1 {
    margin-top: 50px;
    font-size: 4em;
    line-height: 70px;
    font-weight: 100;
}

.banner-facaparte .txt-banner h1 span {
    font-weight: 600;
}

.banner-facaparte .txt-banner p {
    font-size: 1.5em;
    margin: 20px 0;
}


.oferta-pam {
    width: 100%;
    min-height: 100vh;
    background-image: url(../images/pam.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.oferta-pam h2 {
    font-size: 32px;
    color: #004e7a;
    margin-bottom: 10px;
    text-align: center;
}

.oferta-pam p {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 20px;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-step {
    display: none;
    width: 100%;
}

.form-step.active {
    display: block;
}

fieldset {
    border: none;
    padding: 0;
}

legend {
    font-size: 28px;
    font-weight: bold;
    color: #004e7a;
    margin-bottom: 20px;
    text-align: center;
}

label {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
}

.inline-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.inline-group {
    display: flex;
    gap: 20px;
    /* Espaço entre os campos */
    flex-wrap: wrap;
    /* Se for necessário quebrar em telas pequenas */
}

.input-pair {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
    width: 200px;
    /* Garante responsividade */
}

.inline-group>div {
    flex: 1;
    min-width: 150px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.buttons-prox {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.buttons-prox button {
    padding: 10px 20px;
    border: none;
    background-color: #c4302b;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.buttons-prox button:hover {
    background-color: #a72c27;
}

select,
input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.transferencia {
    margin-top: 20px;
    text-align: center;
    line-height: 20px;
}

.transferencia p {
    margin: 3px 0;
}

.transferencia img {
    max-width: 250px;
    margin-top: 10px;
}

.radio-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.radio-button-group input[type="radio"] {
    display: none;
}

.radio-button-group label {
    padding: 10px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #ddd;
    color: #000000;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 13px;
}

.radio-button-group input[type="radio"]:checked+label {
    background-color: #28a745;
    border: 1px solid #28a745;
    color: #fff;
}

.hidden {
    display: none;
}

.radio-button-group input[type="number"] {
    padding: 8px;
    width: 150px;
}

.checkbox-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-button-group input[type="checkbox"] {
    display: none;
}

.checkbox-button-group label {
    padding: 10px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #ddd;
    color: #000000;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 13px;
}

.checkbox-button-group input[type="checkbox"]:checked+label {
    background-color: #28a745;
    border: 1px solid #28a745;
    color: #fff;
}

/* Botões */
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.button-group button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-group button.active {
    background-color: #28a745;
    border: 1px solid #28a745;
    color: #fff;
}

/* Seções */
.payment-section {
    display: none;
    margin-top: 20px;
    align-items: center;
}

.payment-section .interface {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
}


.payment-section.active {
    display: block;
}

/* Especificamente para os dados débito automático */
.banco-cartao,
.agencia-cartao,
.conta-cartao,
.cpf-cartao {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.85;
}

.hidden{
    display: none;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.hidden {
  display: none;
}

.img-center {
  text-align: center;
  margin-top: 1rem;
}

.img-center img {
  max-width: 100%;
  height: auto;
}