/* Resetando alguns estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #0a8f8b;
    color: white;
    padding: 20px 0;
    text-align: center;
}

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

header p {
    font-size: 1.5em;
}

nav {
    background-color: #333;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.timeline {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.timeline-item {
    width: 30%;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
}

.timeline-item img {
    width: 100%;
    border-radius: 10px;
}

.tech-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.tech-card {
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tech-card img {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

#grafico canvas {
    width: 100%;
    height: 400px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* AOS Animations */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(100px);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(-100px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}
