/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #00221d; /* Azul do tema da empresa */
    padding: 15px 0;
    text-align: center;
}

.logo img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 2.5em;
    color: #00221d;
}

.intro p {
    font-size: 1.2em;
    color: #666;
}

.videos {
    text-align: center;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-item {
    width: 560px;
    margin-bottom: 30px;
}

.video-item h3 {
    font-size: 1.2em;
    margin-top: 10px;
}

footer {
    background-color: #00221d;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin-bottom: 10px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer .social-links a:hover {
    text-decoration: underline;
}
