main {
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('../imgs/fondo.jpg');
    background-size: cover;
    background-position: 0px 0px;
    height: calc(100vh - 55px);
    min-height: calc(100vh - 55px);
    width: 100%;

    #conoceme {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: scroll;

        .contenedor {
            display: flex;
            flex-direction: row;
            gap: 150px;
            padding-top: 64px;

            .izq {
                display: flex;
                flex-direction: column;
                padding-left: 200px;
                padding-top: 36px;
                width: 30%;

                img#main-flip-pic {
                    border-bottom-left-radius: 485px 410px;
                    border-bottom-right-radius: 400px 475px;
                    border-top-left-radius: 535px 470px;
                    border-top-right-radius: 395px 400px;
                    height: 384px; 
                    object-fit: cover;
                }

                .cta {
                    display: flex;
                    flex-direction: row;
                    gap: 24px;
                    justify-content: center;
                    margin-top: 48px;

                    .boton {
                        align-items: center;
                        border: 2px solid #282a29;
                        border-radius: 20px;
                        color: #282a29;
                        display: flex;
                        font-size: 14px;
                        font-weight: 700;
                        height: 36px;
                        letter-spacing: 2px;
                        padding: 0px 16px;
                        text-decoration: none;
                        text-transform: uppercase;
                    }
                }
            }
            
            .der {
                display: flex;
                flex-direction: column;
                font-size: 18px;
                line-height: 20px;
                padding-right: 200px;
                width: 70%;
                
                .socials {
                    display: flex;
                    flex-direction: row;
                    gap:24px;
                    justify-content: center;
                    margin-top: 8px;
    
                    .boton {
                        align-items: center;
                        color: #282a29;
                        display: flex;
                        font-size: 14px;
                        font-weight: 700;
                        height: 36px;
                        justify-content: center;
                        letter-spacing: 2px;
                        padding: 0px 16px;
                        text-align: center;
                        text-decoration: none;
                        text-transform: uppercase;
                        width: 156px;
    
                        &:hover {
                            border: 2px solid #282a29;
                        }
                    }
    
                    .click-menu {
                        display: none;
                    }
                }

                .valores {
                    display: flex;
                    flex-direction: row;
                    gap: 64px;
                    justify-content: center;
                    padding: 64px 0px;
                    width: 100%;
        
                    .item {
                        align-items: center;
                        display: flex;
                        flex-direction: column;
                        font-size: 14px;
                        max-width: 192px;
        
                        img {
                            height: 96px;
                            width: 96px;
                        }
        
                        .nombre {
                            font-weight: 700;
                            margin-top: 24px;
                            text-align: center;
                        }
        
                        .descripcion {
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
}

/* movil */
@media (width <= 1100px){
    main {
        #conoceme {
            .contenedor {
                flex-direction: column;
                gap: 24px;

                .izq {
                    align-items: center;
                    padding: 0;
                    width: 100%;

                    img#main-flip-pic {
                        height: fit-content;
                        width: 50%;
                        object-fit: contain;
                    }
                }
                
                .der {
                    align-items: center;
                    padding: 0px;
                    width: 100%;

                    p {
                        width: 85%;
                    }

                    .valores {
                        align-items: center;
                        flex-direction: column;
                        justify-content: center;
                    }
                }
            }
        }
    }
}
