main {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    background-color: var(--muy-oscuro);
    flex: 1 1 0;
}

/* 
    DUDAS FRECUENTES


*/

.dudas-frecuentes {
    display: flex;
    flex-direction: column;
    color: var(--letra);
}

.dudas-frecuentes {
    font-size: 1.5em;
}

.duda {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pea);
    border-radius: 50%;
    margin: 20px 0;
    font-size: 0.8em;
    text-align: center;
    text-decoration: none;
    color: var(--letra);
    height: 80px;
    width: 300px;
}

.duda:hover {
    background-color: var(--oscuro);
    cursor: pointer;
}

/* 
    OTRAS DUDAS 


*/

.otras-dudas {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.titulo-dudas {
    display: flex;
    color: var(--letra);
    background-color: var(--pea);
    border-radius: 80px;
    height: 70px;
    width: 240px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.titulo-dudas p {
    font-size: 2em;
    text-align: center;
}

.otras-dudas textarea {
    width: 500px;
    height: 200px;
    margin-bottom: 20px;
    resize: none;
    font-size: 1.2em;
}

.enviar-dudas {
    display: flex;
    flex-direction: row-reverse;
}

.enviar-dudas button {
    background-color: var(--pea);
    color: var(--letra);
    font-size: 1.5em;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
}

.enviar-dudas button:hover {
    background-color: var(--oscuro);
    cursor: pointer;
}

/* MEDIA QUERY PARA PANTALLAS PEQUEÑAS */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .dudas-frecuentes {
        align-items: center;
    }

    .otras-dudas {
        padding: 0 20px;
    }

    .otras-dudas textarea {
        width: 100%;
        max-width: 500px;
    }
}