/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Epilogue', sans-serif;
}

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

/* Header e Navegação */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover, .nav-list a.active {
    color: #4e4e4e; /* Ajustar para a cor do site original se necessário */
    text-decoration: underline;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.02);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a49f2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.3s;
    min-width: 200px;
    font-family: 'Epilogue', sans-serif;
    text-transform: none;
}

.btn:hover {
    background-color: #0d35c4;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a49f2;
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer h6 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer p a {
    color: #ffffff;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Implementar menu mobile via JS */
    }
    
    .mobile-menu-icon {
        display: flex;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
}
