* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#particles {
    display: none;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.accordion {
    width: 100%;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    background-color: #1b263b;
    color: yellow;
    padding: 1rem;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 6px;
}

.accordion-button:hover {
    background-color: #2a3f5f;
}

.accordion-button.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-content {
    background-color: #1b263b;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.accordion-content p {
    padding: 1.5rem;
    line-height: 1.6;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    .logo {
        width: 120px;
        height: 60px;
    }
    
    .accordion-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .accordion-content p {
        padding: 1rem;
        font-size: 0.9rem;
    }
} 