* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url(./assets/ChatGPT\ Image\ 9\ de\ ago.\ de\ 2025\,\ 17_47_30.png);
    color: #1e2a3a;
    line-height: 1.6;

}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    background: #ffffff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin: 0px 5px;
}

.logo span {
    font-weight: 20px;
    color: #1e2a3a;
    font-size: 30px;
    margin-bottom: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 700;
}

nav a:hover {
    color: #2b6cb0;
}

/* Banner */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.banner-texto {
    max-width: 40%;
    margin: 60px auto;
}

.banner-texto h1 {
    font-size: 40px;
    margin-bottom: px;
}

.botoes a {
    display: inline-block;
    margin: 15px;
    padding: 10px 30px;
    background: #d0dcf1;
    border-radius: 8px;
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 500;
}

.botoes a:hover {
    background: #a7bfe9;
}

.banner-img img {
    max-width: 480px;
    border-radius: 20px;
}

/* Novidades */
.novidades {
    padding: 30px;
    background: #fff;
}

.novidades h2 {
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 10px;
}

.card {
    flex: 1;
    background: #e1ecf7;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.conteudo-pagina {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    max-width: 400px;
    margin-bottom: 15px;
}

/* FORMULÁRIO */
.formulario {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formulario label {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.formulario input,
.formulario textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

.formulario button {
    background: #000;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.formulario button:hover {
    background: #444;
}

/* Rodapé */
.footer {
    background: #e1edf8;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #0a0a0aec;
}

.video-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f0f8ff;
}

.video-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.video-section p {
    max-width: 1000px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade da sessão video */
@media (max-width: 768px) {
    .video-section h2 {
        font-size: 1.5rem;
    }

    .video-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 20px 10px;
    }

    .video-section h2 {
        font-size: 1.3rem;
    }

    .video-section p {
        font-size: 0.95rem;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-texto {
        max-width: 100%;
    }

    .cards {
        flex-direction: column;
    }

    .header {
        flex-direction: column;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .formulario {
        padding: 15px;
    }
}