body {
    background-color: #6e0bd6;
    color: white;
    font-family: sans-serif;
    margin: 0;
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img{
    width: 100%;
    height: auto;
    object-fit: cover; 

}

.section {
    padding: 2rem 20%;
}

.cabecalho-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.cabecalho-principal img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.sub-titulo {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
}

.sub-titulo h2, .conteudo h2 {
  font-family: "Montserrat", sans-serif;
  color: #8ce563;
  font-size: 2.5em; 
  font-weight: bold;
  margin: 0;
}

.sub-titulo p:last-child {
    font-weight: bold;
}

.secao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.secao .imagem-modelo {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

.conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    gap: 1rem;
    max-width: 600px;
}

.conteudo p {
    font-size: 1.1em;
    margin-bottom: 10px;
}
.conteudo .botao-geral:hover {
    background-color: #E64A19;
}

.continue-jornada {
    padding: 60px 20px;
    margin-top: 0;
    text-align: center;
}

.titulo-jornada {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
}

.aviso-jornada {
    font-size: 0.9em;
    color: white;
    margin-bottom: 40px;
    font-style: italic;
}

.modulos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.botao-modulo {
    background-color: white;
    color: #ff5e00;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
     text-align: center;
    display: block;
    width: 100%;
    max-width: 225px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.botao-modulo:hover {
    background-color: #E64A19;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.container-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-contato {
    text-align:left;
}

.info-contato div {
    display: flex;
    margin-bottom: 1rem;
    gap: 4px;
}

b {
    font-weight: bold;
}

.titulo-contato {
    margin-bottom: 20px;
}

.horario-titulo {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.horario-texto {
    font-size: 1em;
    margin-bottom: 0;
}

.depoimento-contato {
    background-color: #ff5e00;
    padding: 0.5rem;
    margin: 0.5rem;
    margin-top: 2rem;
    border-radius: 8px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    text-transform: uppercase ;
}

.texto-depoimento {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 570px) {
  .sub-titulo h2,
  .conteudo h2 {
    font-size: 1.5em;
  }
}

/* Estilos do Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

.modal.active,
.modal-overlay.active {
    display: block;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-button {
    flex: 1;
    min-width: 150px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modal-button.manha {
    background: linear-gradient(135deg, #FDB813 0%, #F89B1C 100%);
    color: white;
}

.modal-button.manha:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
}

.modal-button.tarde {
    background: linear-gradient(135deg, #1E5B9B 0%, #154A7D 100%);
    color: white;
}

.modal-button.tarde:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 91, 155, 0.4);
}

.modal-button.cancelar {
    flex: 100%;
    background: transparent;
    color: #999;
    border: 2px solid #ddd;
    margin-top: 10px;
}

.modal-button.cancelar:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}