section{
    margin-bottom: 100px;
}


.container-about{
    height: 100%;
    max-width: 100%;
    margin: 100px 50px 50px 50px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-sizing: border-box;
}

.text-center{
    text-align: center;
    margin-bottom: 50px;
}
.me, .enfoque, .personal{
    margin-left: 10%;
}
.tomoto, .metas{
    text-align: end;
    margin-right: 10%;
}

.image-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}
.description {
    width: 50%;
    text-align: left;
    padding-left: 20px;
}
.slider-container-about {
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
}
.slider-about {
    display: flex;
    transition: transform 0.3s ease;

}

.slide {
    min-width: 100%;
    transition: transform 0.3s ease;
}

.slide img {
    width: 100%;
    display: block;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

@media (max-width: 768px) { 
    section{
        margin-bottom: 0;
    }
    .container-about{
        height: 100%;
        max-width: 100%;
        margin: 100px 20px 50px 20px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-sizing: border-box;
    }
    .me{
        text-align: start;
        margin-left: 0;
    }
    .tomoto{
        text-align: start;
        margin-right: 0;
    }
    .image-gallery{
        display: flex;
        flex-direction: column;
    }
    #reverse{
        flex-direction: column-reverse;
    }

    .description{
        width: 100%;
        padding: 0;
    }
}

