/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Usando Roboto como padrão, pode ser ajustado */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #0056b3; /* Azul escuro */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header .logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 50%; /* Se o logo for circular */
    border: 3px solid #fff;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

header .slogan {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Main Content Sections */
main {
    flex: 1;
    padding: 20px 0;
}

section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-link {
    text-align: center;
    font-size: 1.1em;
}

.youtube-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.youtube-link a:hover {
    text-decoration: underline;
}

/* Newsletter Form */
#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 20px auto 10px auto;
}

#newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#newsletter-form button {
    background-color: #28a745; /* Verde */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter-form button:hover {
    background-color: #218838;
}

.form-note {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header .slogan {
        font-size: 1em;
    }
    section h2 {
        font-size: 1.8em;
    }
    #newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }
    header .slogan {
        font-size: 0.9em;
    }
    section {
        padding: 20px;
    }
    section h2 {
        font-size: 1.5em;
    }
}