/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a1128, #1c2541, #3a506b);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    line-height: 1.6;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.7);
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
}

.tagline {
    font-size: 1.5rem;
    color: #4ade80;
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.5);
}

/* Seção de introdução */
.intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.intro-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 50px 0 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #4ade80, #4ade80, transparent);
    z-index: 1;
}

.timeline-container {
    position: relative;
}

.timeline-item {
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
}

.timeline-item::after {
    content: attr(data-year);
    position: absolute;
    top: 0;
    width: 120px;
    height: 40px;
    background-color: #4ade80;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.timeline-item:nth-child(odd)::after {
    right: calc(50% - 60px);
}

.timeline-item:nth-child(even)::after {
    left: calc(50% - 60px);
}

.timeline-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4ade80;
}

.timeline-image {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.timeline-image img:hover {
    transform: scale(1.05);
}

/* Produtos */
.products {
    padding: 60px 0;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.7);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4ade80;
}

.product-card p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Futuro */
.future {
    text-align: center;
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.future h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.future p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final {
    margin-top: 50px;
}

.cta-final h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Botões */
.cta-button-container {
    margin: 30px 0;
}

.glowing-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.7);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(74, 222, 128, 0.7);
    }
    100% {
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.7), 0 0 30px rgba(74, 222, 128, 0.5);
    }
}

.glowing-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

.pulse-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.7);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(74, 222, 128, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.pulse-button:hover {
    animation: none;
    transform: scale(1.1);
    background: linear-gradient(45deg, #22c55e, #16a34a);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.9);
}

/* Rodapé */
footer {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #4ade80;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ade80;
}

/* Responsividade */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item::after {
        left: 0 !important;
        right: auto !important;
    }
    
    .product-grid {
        gap: 20px;
    }
    
    .product-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .intro h2, .products h2, .future h2 {
        font-size: 2rem;
    }
    
    .intro-text, .future p {
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-final h3 {
        font-size: 1.7rem;
    }
    
    .glowing-button, .pulse-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-card {
        width: 100%;
    }
    
    .pulse-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}
