/*
.body {
    font-family: sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
*/
/*
.acordeon-container {
    width: 100%; 
    max-width: 900px; 
    position: relative;
    overflow: hidden;  
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    justify-content: center;
    margin: 0 auto;
}
*/
.acordeon-container {
    width: 100%;
    max-width: 900px;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0 auto;
}

.acordeon-p1{
    text-align: justify;
    text-justify: inter-word;
    padding:55px;
}

li{
    text-align: justify;
    text-justify: inter-word;
    padding:5px;
}

details {
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: #cedb1a;
}

details[open] {
    background-color: #ffffff;
    color:#0bac03;
    align-items: left;
}

details[open] summary::after {
    transform: rotate(90deg);
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(222, 9, 9, 0.5);
    border-radius: 6px;
    color: #4a4a4a;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    /* content: '▶'; /* Icono de flecha */
    content: '+';
    font-size: 1em;
    transition: transform 0.3s ease;
    color: #4a4a4a;
}




