@charset "utf-8";
/* CSS Document */
/* Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    min-height: 100vh;
    background: 
        linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
        url('../imagens/fundo.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

header nav {
    display: flex;
    align-items: center;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

header nav a:hover,
header nav a.destaque {
    color: #007bff;
}

/* Botão de menu mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    header nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        display: none;
    }

    header nav a {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    header nav.active {
        display: flex;
    }
}


/* Banner */
#banner { position: relative; width: 100%; height: 80vh; overflow: hidden;background-color: rgba(0, 0, 0, 0.3); /* 0.6 = 60% opaco */ }
#banner .slides { position: relative; width: 100%; height: 100%; }
#banner .slide { position: absolute; top:0; left:0; width: 100%; height:100%; opacity:0; transition: opacity 1s ease-in-out; }
#banner .slide.ativo { opacity:1; z-index:-1; }
#banner .slide img { width: 100%; height: 100%; object-fit: cover;background-color: rgba(0, 0, 0, 0.3); }
.texto-banner { position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); color:#fff; text-align:center; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.texto-banner h2 { font-size: 48px; margin-bottom:10px; }
.texto-banner p { font-size: 20px; }
.banner-text {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),   /* sombra principal */
       -2px -2px 4px rgba(0,0,0,0.7),  /* reforço do contorno */
        2px -2px 4px rgba(0,0,0,0.7),
       -2px 2px 4px rgba(0,0,0,0.7);
}.banner-text {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),   /* sombra principal */
       -2px -2px 4px rgba(0,0,0,0.7),  /* reforço do contorno */
        2px -2px 4px rgba(0,0,0,0.7),
       -2px 2px 4px rgba(0,0,0,0.7);
}
/* Seções */
.section { padding: 80px 20px; }
.section h2 { margin-bottom: 20px; color:#007bff; text-align:center; }
.conteudo { display:flex; flex-wrap:wrap; align-items:center; gap:20px; justify-content:center; }
.conteudo img { width: 45%; max-width: 500px; border-radius:10px; }
.conteudo p { width: 45%; font-size:16px; }
.section:nth-child(even) .conteudo { flex-direction: row-reverse; }

/* Seção Nosso Objetivo */
.objetivo-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 20px;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center; /* centraliza todo o conteúdo */
}

.objetivo-section .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza internamente */
    gap: 05px; /* espaçamento entre blocos */
}

.objetivo-section h2 {
    color: #007bff;
    margin-bottom: 5px;
}

.objetivo-section h3 {
    color: #333;
    margin-top: 5px;
    margin-bottom: 5px;
}

.objetivo-section h4 {
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
}

.objetivo-section p, 
.objetivo-section li {
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.objetivo-section ul {
    padding-left: 0;
    list-style: none;
}

.objetivo-section ul li::before {
    content: "• ";
    color: #007bff;
}


#historia {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

#historia h2 {
  margin-bottom: 30px;
}

.historia-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.historia-container .bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.historia-container img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.historia-container p {
  text-align: justify;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
}

@media (min-width: 768px) {
  .historia-container .bloco {
    flex-direction: row;
    align-items: flex-start;
  }

  .historia-container .bloco:nth-child(even) {
    flex-direction: row-reverse;
  }

  .historia-container img {
    flex: 1;
  }

  .historia-container p {
    flex: 1;
    padding: 0 20px;
  }
}


#contas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

#contas select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contas .btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    transition: background-color 0.3s;
}

#contas .btn:hover {
    background-color: #0056b3;
}



/* Formulário */
form { display:flex; flex-wrap:wrap; gap:20px; max-width:800px; margin:auto; background:#f2f2f2; padding:20px; border-radius:10px; }
form label { font-weight:bold; margin-bottom:5px; }
form input, form select { padding:8px; border-radius:5px; border:1px solid #ccc; width:100%; }
form button { padding:10px 20px; background:#007bff; color:#fff; border:none; border-radius:5px; cursor:pointer; }
form button:hover { background:#0056b3; }

#formPadrinho .checkbox {
    display: flex;
    align-items: center;
    gap: 8px; /* espaçamento entre checkbox e texto */
}

#formPadrinho .checkbox label {
    white-space: nowrap; /* evita que o texto quebre em várias linhas */
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

#formPadrinho {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#formPadrinho .form-group {
    display: flex;
    flex-direction: column;
}

#formPadrinho label {
    font-weight: bold;
    margin-bottom: 5px;
}

#formPadrinho input,
#formPadrinho select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#formPadrinho .checkbox {
    flex-direction: row;
    align-items: center;
}

#formPadrinho .checkbox label {
    font-weight: normal;
    margin: 0;
}

#formPadrinho .btn {
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#formPadrinho .btn:hover {
    background-color: #0056b3;
}



/* Comerciantes */
.lista { display:flex; flex-wrap:wrap; gap:15px; justify-content:center; }
.item { width:200px; background:#f2f2f2; padding:10px; border-radius:10px; text-align:center; }
.item img { width:100%; height:100px; object-fit:contain; margin-bottom:5px; }
.item a { text-decoration:none; color:#25D366; font-weight:bold; display:block; margin-top:5px; }

/* Lista de padrinhos */
.section .lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 5px;
    margin-top:5px;
}

.section .lista .item {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px;
    text-align: center;
    font-size: 13px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.section .lista .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section .lista .item img {
    width:120px;
    height:120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 1px solid #ccc;
}

.section .lista .item p {
    margin: 5px 0;
}

.section .lista .item a {
    display: inline-block;
    margin-top: 5px;
    padding: 4px 8px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: background 0.2s;
}

.section .lista .item a:hover {
    background: #0056b3;
}

/* LISTA 2 – NÃO COMERCIANTES (versão compacta e otimizada) */
.lista2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    padding: 5px 0;
}

.item2 {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
    min-height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.15s;
}

.item2:hover {
    background: #f5f5f5;
}

.item2 p {
    font-weight: bold;
    color: #333;
    margin: 0;
    font-size: 13px;
}

.item2 .cat2 {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #666;
}

/* Ajuste para telas menores */
@media (max-width: 600px) {
    .lista2 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}



/* Footer */
footer { text-align:center; padding:20px; background:#007bff; color:#fff; font-weight:bold; }

/* Responsivo */
@media(max-width:768px){
  .conteudo img, .conteudo p { width:100%; }
  .texto-banner h2 { font-size:32px; }
  .texto-banner p { font-size:16px; }
  form { flex-direction:column; }
}
